Merge pull request #3 from scemama/master

Corrected bug when options have an '='
This commit is contained in:
Thomas Applencourt 2015-06-03 09:27:10 +02:00
commit d630421044
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ def read_make_config():
with open("make.config",'r') as f:
for line in f.readlines():
try:
key, value = line.strip().split('=')
key, value = line.strip().split('=',1)
except:
print "Error in make.config:"
print line