From 4e9c94c102fff2b458576f7329b4aef5d5161ce5 Mon Sep 17 00:00:00 2001 From: manetta Date: Tue, 16 Apr 2019 23:11:17 +0200 Subject: [PATCH] removing the default value for the output folder --- logbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logbot.py b/logbot.py index 497eadb..53584d0 100644 --- a/logbot.py +++ b/logbot.py @@ -133,7 +133,7 @@ if __name__ == '__main__': # output folder for images parser.add_argument("-o", "--output", dest="output", help="output folder, this is where the files are stored", - default="./output/", type=str) + type=str) args = parser.parse_args()