10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-06-18 11:15:20 +02:00
irpf90/tools/commit-msg

14 lines
218 B
Plaintext
Raw Normal View History

2009-09-02 20:45:53 +02:00
#!/usr/bin/python
import os,sys
ROOT = os.path.dirname(__file__)+'/../../'
file = open(ROOT+'src/version.py','r')
exec file
file.close()
file = open(sys.argv[1],'a')
print >>file, 'Version:'+version
file.close()