##// END OF EJS Templates
- Small extension bug fix (irunner would fail to automatically recognize...
- Small extension bug fix (irunner would fail to automatically recognize file extensions).

File last commit:

r503:b114b8cd
r514:0cd1e86c
Show More
update_revnum.py
13 lines | 331 B | text/x-python | PythonLexer
""" Change the revision number in Release.py """
import os
import re
rev = os.popen('svnversion ..').read().strip()
print "current rev is",rev
assert ':' not in rev
rfile = open('../IPython/Release.py').read()
newcont = re.sub(r'revision\s*=.*', "revision = '%s'" % rev, rfile)
open('../IPython/Release.py','w').write(newcont)