Skip to content

Commit

Permalink
Fix error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsitton committed Oct 27, 2015
1 parent 5131242 commit 1747044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fofix/core/Config.py
Expand Up @@ -67,7 +67,7 @@ def read(self, filenames, encoding=None):
#self._read(fp, filename)
configData = fp.read()
configLines = configData.split('\n')
configLines = [line for line in configSplit
configLines = [line for line in configLines
if line.strip()[0:2] != '//']
configData = '\n'.join(configLines)
strFp = StringIO.StringIO(configData)
Expand Down

0 comments on commit 1747044

Please sign in to comment.