Update writeOut to include isatty (#6602)

Added these lines so that QGIS 3 python console works in window
This commit is contained in:
Shiva Reddy 2018-03-16 02:50:14 +05:30 committed by Nyall Dawson
parent 435c14d1ee
commit 536cc9cfbe

View File

@ -80,6 +80,9 @@ class writeOut(object):
def flush(self):
pass
def isatty(self):
return False
class ShellOutputScintilla(QsciScintilla):