QScintilla/Lexers/__init__.py

changeset 3030
4a0a82ddd9d2
parent 3011
18292228c724
child 3058
0a02c433f52d
child 3105
80850df745a3
--- a/QScintilla/Lexers/__init__.py	Fri Oct 18 18:00:02 2013 +0200
+++ b/QScintilla/Lexers/__init__.py	Fri Oct 18 18:42:10 2013 +0200
@@ -133,7 +133,7 @@
         "TeX": [QApplication.translate('Lexers', "TeX"), 'dummy.tex',
                 "lexerTeX.png"],
         "VHDL": [QApplication.translate('Lexers', "VHDL"), 'dummy.vhd',
-                "lexerVHDL.png"],
+                 "lexerVHDL.png"],
         "XML": [QApplication.translate('Lexers', "XML"), 'dummy.xml',
                 "lexerXML.png"],
         "YAML": [QApplication.translate('Lexers', "YAML"), 'dummy.yml',
@@ -193,7 +193,8 @@
                 return LexerPython(language, parent)
             elif language == "C++":
                 from .LexerCPP import LexerCPP
-                return LexerCPP(parent,
+                return LexerCPP(
+                    parent,
                     Preferences.getEditor("CppCaseInsensitiveKeywords"))
             elif language == "C#":
                 from .LexerCSharp import LexerCSharp

eric ide

mercurial