Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHabben committed Nov 10, 2015
1 parent 3234828 commit 845026d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion evolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,14 +326,16 @@ def run_plugin_process(name, queue, config, cmds):
config.parse_options()
command = cmds[name](config)
print 'running: ' + name
errstr = ''
try:
calc = command.calculate()
command.render_sqlite(config.OUTPUT_FILE, calc)
#AddColumn(config.OUTPUT_FILE, name, 'profile', config.PROFILE)
except Exception as err:
print name + ': ' + err.message
errstr = err.message
finally:
result = {name:err.message}
result = {name:errstr}
queue.put(result)
#queue.put(name)
return
Expand Down

0 comments on commit 845026d

Please sign in to comment.