diff options
| author | Georg Brandl <georg@python.org> | 2012-02-05 12:54:35 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2012-02-05 12:54:35 +0100 |
| commit | 991da8a6079f8248e4ac39d95917c335bea691f2 (patch) | |
| tree | fbeee50d1f71f58679789b0c73046a6d8e6fcb23 /scripts | |
| parent | 4e1b752c5da4ff39ebd8cbf3d3fa3ddd685c584e (diff) | |
| download | pygments-git-991da8a6079f8248e4ac39d95917c335bea691f2.tar.gz | |
Style fixes.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/get_vimkw.py | 3 |
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')") |
