--- a/QScintilla/Lexers/LexerPython.py Sat Oct 12 18:25:29 2013 +0200 +++ b/QScintilla/Lexers/LexerPython.py Sun Oct 13 12:21:37 2013 +0200 @@ -56,8 +56,10 @@ if not Preferences.getEditor("PythonAutoIndent"): self.setAutoIndentStyle(QsciScintilla.AiMaintain) try: - self.setV2UnicodeAllowed(Preferences.getEditor("PythonAllowV2Unicode")) - self.setV3BinaryOctalAllowed(Preferences.getEditor("PythonAllowV3Binary")) + self.setV2UnicodeAllowed( + Preferences.getEditor("PythonAllowV2Unicode")) + self.setV3BinaryOctalAllowed( + Preferences.getEditor("PythonAllowV3Binary")) self.setV3BytesAllowed(Preferences.getEditor("PythonAllowV3Bytes")) except AttributeError: pass