From 991da8a6079f8248e4ac39d95917c335bea691f2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 5 Feb 2012 12:54:35 +0100 Subject: Style fixes. --- scripts/get_vimkw.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') 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')") -- cgit v1.2.1