aboutsummaryrefslogtreecommitdiff
path: root/scripts/shadacat.py
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-11-05 17:34:21 -0800
committerJustin M. Keyes <justinkz@gmail.com>2019-11-05 17:34:21 -0800
commit3e21d498362f8cfff7ee467be6402fb00a53eeb5 (patch)
treecffcd0e03a35fc4f8496e1eac084913c31bc5a1e /scripts/shadacat.py
parent610755ff62049bd38cc72524a26ac0a27d951c3c (diff)
parent4f124702c079fba4502b077c8c832538c0f0b386 (diff)
downloadrneovim-3e21d498362f8cfff7ee467be6402fb00a53eeb5.tar.gz
rneovim-3e21d498362f8cfff7ee467be6402fb00a53eeb5.tar.bz2
rneovim-3e21d498362f8cfff7ee467be6402fb00a53eeb5.zip
Merge #11319 'inccommand: fix issues with modifiers and prompting'
Diffstat (limited to 'scripts/shadacat.py')
-rwxr-xr-xscripts/shadacat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/shadacat.py b/scripts/shadacat.py
index 89846427a5..2b71fc2385 100755
--- a/scripts/shadacat.py
+++ b/scripts/shadacat.py
@@ -66,7 +66,7 @@ except IndexError:
def filt(entry): return True
else:
_filt = filt
- def filt(entry): return eval(_filt, globals(), {'entry': entry})
+ def filt(entry): return eval(_filt, globals(), {'entry': entry}) # noqa
poswidth = len(str(os.stat(fname).st_size or 1000))