mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2025-06-02 08:09:53 -04:00
Merge pull request #35 from bruor/patch-1
add exception handling for isatty()
This commit is contained in:
commit
e1a95806a8
1 changed files with 5 additions and 2 deletions
|
@ -187,8 +187,11 @@ class ShellMessage(object):
|
||||||
if sys.stdout.isatty():
|
if sys.stdout.isatty():
|
||||||
print(toprint)
|
print(toprint)
|
||||||
else:
|
else:
|
||||||
from pykms_GuiBase import gui_redirect # Import after variables creation.
|
try:
|
||||||
gui_redirect(toprint)
|
from pykms_GuiBase import gui_redirect # Import after variables creation.
|
||||||
|
gui_redirect(toprint)
|
||||||
|
except:
|
||||||
|
print(toprint)
|
||||||
|
|
||||||
def spawn(self):
|
def spawn(self):
|
||||||
# Save everything that would otherwise go to stdout.
|
# Save everything that would otherwise go to stdout.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue