From 3e1a15ac48739a17d47297a76e6ba76dc4292bfc Mon Sep 17 00:00:00 2001 From: gabe Date: Sun, 9 Jan 2022 21:55:23 -0600 Subject: [PATCH] fixed logic error in inputdir validation. --- ASCIIsite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASCIIsite.py b/ASCIIsite.py index d0ad22a..be356fb 100755 --- a/ASCIIsite.py +++ b/ASCIIsite.py @@ -55,7 +55,7 @@ def parse_arguments(): print(str(e)) exit() - if args.inputDir.resolve().exists(): + if not args.inputDir.resolve().exists(): print(f'Inputdir {args.inputDir.resolve()} does not exist!') exit()