diff options
| author | Peter LaFosse <peter@vector35.com> | 2017-06-20 19:41:50 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2017-07-01 10:02:27 -0400 |
| commit | b0778fc4d0271a9ba16e7c81c2c4c67a8273cda6 (patch) | |
| tree | 8f8930c38302a40d9ec83fa8d67874d7152d0f19 /python | |
| parent | d3a401da5af8dd471adf842b63c7368c7f8e87d0 (diff) | |
Fixes issue #712
Diffstat (limited to 'python')
| -rw-r--r-- | python/scriptingprovider.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py index 94616d59..a913f7d6 100644 --- a/python/scriptingprovider.py +++ b/python/scriptingprovider.py @@ -335,7 +335,7 @@ class _PythonScriptingInstanceOutput(object): self.buffer = "" self.encoding = 'UTF-8' self.errors = None - self.isatty = False + self.isatty = lambda: False self.mode = 'w' self.name = 'PythonScriptingInstanceOutput' self.newlines = None |
