diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-05 17:34:21 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-11-05 17:34:21 -0800 |
commit | 3e21d498362f8cfff7ee467be6402fb00a53eeb5 (patch) | |
tree | cffcd0e03a35fc4f8496e1eac084913c31bc5a1e /scripts/shadacat.py | |
parent | 610755ff62049bd38cc72524a26ac0a27d951c3c (diff) | |
parent | 4f124702c079fba4502b077c8c832538c0f0b386 (diff) | |
download | rneovim-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-x | scripts/shadacat.py | 2 |
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)) |