Commit 4ecf2baf authored by Paweł Szostek's avatar Paweł Szostek

configparser.py: print manifest content when erroneous

parent 3d92d616
......@@ -278,6 +278,7 @@ class ConfigParser(object):
#print "out:", s.getvalue()
except SyntaxError as e:
logging.error("Invalid syntax in the manifest file " + self.config_file + ":\n" + str(e))
logging.error(content)
quit()
except:
logging.error("Encountered unexpected error while parsing " + self.config_file)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment