From 9f7664b17948e0ad13e0585c9549b3ef2b3f59a7 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 2 Dec 2021 19:53:28 -0800 Subject: [PATCH] Fix lint_main_returns header showing the old title. --- lint_main_returns.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lint_main_returns.py b/lint_main_returns.py index aa3f9dc..4c69ed4 100644 --- a/lint_main_returns.py +++ b/lint_main_returns.py @@ -1,6 +1,9 @@ ''' -lint_argparse_returns -===================== +lint_main_returns +================= + +Checks Python programs to make sure the main function and argparse functions +have a return value, which should be an integer status code. ''' import ast import sys @@ -8,7 +11,7 @@ import sys from voussoirkit import pathclass from voussoirkit import vlogging -log = vlogging.getLogger(__name__, 'lint_argparse_returns') +log = vlogging.getLogger(__name__, 'lint_main_returns') @vlogging.main_decorator def main(argv):