summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-rw-r--r--Misc/Vim/syntax_test.py2
-rw-r--r--Misc/Vim/vim_syntax.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Misc/Vim/syntax_test.py b/Misc/Vim/syntax_test.py
index 67b3199..74f3bef 100644
--- a/Misc/Vim/syntax_test.py
+++ b/Misc/Vim/syntax_test.py
@@ -33,4 +33,4 @@ ur'unicode raw'
() # Uncoloured
all
GeneratorExit
-trailing_whitespace = path
+trailing_whitespace = path
diff --git a/Misc/Vim/vim_syntax.py b/Misc/Vim/vim_syntax.py
index b733929..a4df485 100644
--- a/Misc/Vim/vim_syntax.py
+++ b/Misc/Vim/vim_syntax.py
@@ -128,7 +128,7 @@ def fill_stmt(iterable, fill_len):
"""Yield a string that fills at most fill_len characters with strings
returned by 'iterable' and separated by a space"""
# Deal with trailing char to handle ' '.join() calculation
- fill_len += 1
+ fill_len += 1
overflow = None
it = iter(iterable)
while True: