From cf1635cd7a0fb861ed75b253d4e0530c9615ccce Mon Sep 17 00:00:00 2001 From: George Lacey Date: Wed, 5 May 2021 06:22:50 +0100 Subject: [PATCH] Rename args.output to args.dir --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 10fd7ad..7f67c2f 100644 --- a/src/main.py +++ b/src/main.py @@ -8,8 +8,8 @@ from borgmanager.summary import Summary def main(args, path: Path): - if args.output is not None: - output_path = Path(args.output) + if args.dir is not None: + output_path = Path(args.dir) if not output_path.exists(): output_path.mkdir() path = output_path