diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-11 21:18:17 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-11 21:18:17 +0300 |
commit | b6a064bd0ff0ae8e22d4b37607ac6908f883776a (patch) | |
tree | ab624a1810cd8c3069332b7f986d5e47c56a18e6 /bin/utils/cmd_line.py | |
parent | README update (diff) | |
download | filters-b6a064bd0ff0ae8e22d4b37607ac6908f883776a.tar.gz filters-b6a064bd0ff0ae8e22d4b37607ac6908f883776a.zip |
revert most of the recent Pylint fixes
I know better how to name my things.
Diffstat (limited to 'bin/utils/cmd_line.py')
-rw-r--r-- | bin/utils/cmd_line.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/utils/cmd_line.py b/bin/utils/cmd_line.py index 43f7bca..02c596c 100644 --- a/bin/utils/cmd_line.py +++ b/bin/utils/cmd_line.py @@ -5,11 +5,11 @@ import argparse -def parse_non_negative_integer(src): +def parse_non_negative_integer(s): try: - n = int(src) + n = int(s) except ValueError: - raise argparse.ArgumentTypeError('must be a non-negative integer: ' + src) + raise argparse.ArgumentTypeError('must be a non-negative integer: ' + s) if n < 0: - raise argparse.ArgumentTypeError('must be a non-negative integer: ' + src) + raise argparse.ArgumentTypeError('must be a non-negative integer: ' + s) return n |