Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Enable non-ascii chars in Python Console
  • Loading branch information
slarosa committed Oct 22, 2012
1 parent a45b759 commit a29ccbf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/console_sci.py
Expand Up @@ -40,6 +40,9 @@ def __init__(self, parent=None):
super(PythonEdit,self).__init__(parent)
code.InteractiveInterpreter.__init__(self, locals=None)

# Enable non-ascii chars for editor
self.setUtf8(True)

self.new_input_line = True

self.setMarginWidth(0, 0)
Expand Down

0 comments on commit a29ccbf

Please sign in to comment.