summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-02-05 12:54:35 +0100
committerGeorg Brandl <georg@python.org>2012-02-05 12:54:35 +0100
commitc7e77eb6a50245fbcea3849e7c65439156c61206 (patch)
treefbeee50d1f71f58679789b0c73046a6d8e6fcb23 /scripts
parent612c67014af9f57154188c5ec5450dee5e2cfce3 (diff)
downloadpygments-c7e77eb6a50245fbcea3849e7c65439156c61206.tar.gz
Style fixes.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/get_vimkw.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/get_vimkw.py b/scripts/get_vimkw.py
index 4af5451b..153c88c3 100644
--- a/scripts/get_vimkw.py
+++ b/scripts/get_vimkw.py
@@ -22,7 +22,8 @@ def getkw(input, output):
# Extract all the shortened versions
for i in r_item.finditer(m.group(2)):
- d.append('(%r,%r)' % (i.group(1), "%s%s" % (i.group(1), i.group(2) or '')))
+ d.append('(%r,%r)' %
+ (i.group(1), "%s%s" % (i.group(1), i.group(2) or '')))
output_info['option'].append("('nnoremap','nnoremap')")
output_info['option'].append("('inoremap','inoremap')")