From 38683a1318cbbe573bbf398e41f74f83ceda7bc8 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sun, 28 Apr 2019 22:20:15 -0700 Subject: [PATCH] Add description --- bin/backup | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/backup b/bin/backup index 9f7afe6..b8193de 100644 --- a/bin/backup +++ b/bin/backup @@ -34,6 +34,8 @@ EXTRA_RSYNC_OPTS = { "update": "--update", } +DESCRIPTION = "Run a backup on a repository within a local path" + # ----- Error Codes ----- E_PERMISSION = 13 @@ -50,7 +52,7 @@ def parse_cmdline_arguments(**kwargs): :rtype: argparse.Namespace object """ - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser(description=DESCRIPTION) parser.add_argument( "-c", "--use-checksums",