Add description

This commit is contained in:
Eric Torres 2019-04-28 22:20:15 -07:00
parent 3821b723d9
commit 38683a1318

View File

@ -34,6 +34,8 @@ EXTRA_RSYNC_OPTS = {
"update": "--update", "update": "--update",
} }
DESCRIPTION = "Run a backup on a repository within a local path"
# ----- Error Codes ----- # ----- Error Codes -----
E_PERMISSION = 13 E_PERMISSION = 13
@ -50,7 +52,7 @@ def parse_cmdline_arguments(**kwargs):
:rtype: argparse.Namespace object :rtype: argparse.Namespace object
""" """
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser(description=DESCRIPTION)
parser.add_argument( parser.add_argument(
"-c", "-c",
"--use-checksums", "--use-checksums",