From 8b2d26e1f6a9ee0f0cd6a46c6201efa641dbfa30 Mon Sep 17 00:00:00 2001 From: tdvantine <56764154+tdvantine@users.noreply.github.com> Date: Mon, 15 Feb 2021 11:39:28 -0700 Subject: [PATCH] Update backups.py Changed the argument name to match that of the ini --- backups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backups.py b/backups.py index 32e1323..a8a3359 100644 --- a/backups.py +++ b/backups.py @@ -42,7 +42,7 @@ def debug(msg): def parse_args(): parser = argparse.ArgumentParser() - parser.add_argument('config', help="config from config.ini that should be used", nargs='?', default='default') + parser.add_argument('config', help="config from config.ini that should be used", nargs='?', default='DEFAULT') parser.add_argument("-d", '--dump', help="dump postgres database", action="store_true")