Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

lexers: remove trailing white-space

Changeset 8a3ad09c8b34

Parent 0e283608e5ac

by Steve Borho

Changes to one file · Browse files at 8a3ad09c8b34 Showing diff from parent 0e283608e5ac Diff from another changeset...

 
54
55
56
57
 
58
59
 
60
61
62
 
54
55
56
 
57
58
 
59
60
61
62
@@ -54,9 +54,9 @@
  if len(line)<1000 and self.regex.match(line):   return True   return False - +  class PythonLexerSelector(_ScriptLexerSelector): - extensions = ('.py', '.pyw') + extensions = ('.py', '.pyw')   _lexer = Qsci.QsciLexerPython   regex = re.compile(r'^#[!].*python')