Merge pull request #35 from bruor/patch-1

add exception handling for isatty()
This commit is contained in:
Matteo ℱan 2019-10-05 22:15:26 +02:00 committed by GitHub
commit e1a95806a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,8 +187,11 @@ class ShellMessage(object):
if sys.stdout.isatty():
print(toprint)
else:
from pykms_GuiBase import gui_redirect # Import after variables creation.
gui_redirect(toprint)
try:
from pykms_GuiBase import gui_redirect # Import after variables creation.
gui_redirect(toprint)
except:
print(toprint)
def spawn(self):
# Save everything that would otherwise go to stdout.