fixed a stupido error
This commit is contained in:
parent
333445be8b
commit
003b0def46
|
@ -629,9 +629,9 @@ parser.set_defaults(separateFiles = False)
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
file = open('%s/../MSCpath'%os.path.dirname(os.path.realpath(sys.argv[0])))
|
default = open('%s/../MSCpath'%os.path.dirname(os.path.realpath(sys.argv[0])))
|
||||||
MSCpath = os.path.normpath(file.readline().strip())
|
MSCpath = os.path.normpath(default.readline().strip())
|
||||||
file.close()
|
default.close()
|
||||||
except:
|
except:
|
||||||
MSCpath = '/msc'
|
MSCpath = '/msc'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue