Option to use the default IOU RAM & NVRAM values.

This commit is contained in:
grossmj
2014-05-07 15:54:52 -06:00
parent 34ad75860d
commit 44bcc94e3e
2 changed files with 30 additions and 3 deletions

View File

@ -265,7 +265,7 @@ class IModule(multiprocessing.Process):
log.error("uncaught exception {type}".format(type=type(e)), exc_info=1)
exc_type, exc_value, exc_tb = sys.exc_info()
lines = traceback.format_exception(exc_type, exc_value, exc_tb)
tb = "\n" . join(lines)
tb = "".join(lines)
self.send_custom_error("uncaught exception {type}: {string}\n{tb}".format(type=type(e),
string=str(e),
tb=tb))