alternative expression to parse script filename (scriptID excluding file extension).
This commit is contained in:
parent
9345640dfd
commit
52160385a6
|
@ -9,7 +9,7 @@ from cStringIO import StringIO
|
|||
import damask
|
||||
|
||||
scriptID = string.replace('$Id$','\n','\\n')
|
||||
scriptName = scriptID.split()[1][:-3]
|
||||
scriptName = os.path.splitext(scriptID.split()[1])[0]
|
||||
mismatch = None
|
||||
currentSeedsName = None
|
||||
|
||||
|
|
Loading…
Reference in New Issue