10
0
mirror of https://gitlab.com/scemama/EZFIO.git synced 2024-06-02 11:25:20 +02:00

Corrected bug when options have an '='

This commit is contained in:
Anthony Scemama 2015-06-02 21:46:40 +02:00
parent bb8975215d
commit 57b63c1306

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