Browse Source

add missing return statement in processor.py

pull/616/head
Chris 4 years ago
parent
commit
784d466288
1 changed files with 1 additions and 1 deletions
  1. 2
      gooey/gui/processor.py

2
gooey/gui/processor.py

@ -30,7 +30,7 @@ class ProcessController(object):
def poll(self):
if not self._process:
raise Exception('Not started!')
self._process.poll()
return self._process.poll()
def stop(self):
if self.running():

Loading…
Cancel
Save