Fix lint_main_returns header showing the old title.

This commit is contained in:
voussoir 2021-12-02 19:53:28 -08:00
parent f102d09a4b
commit 9f7664b179
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -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):