From 67a545e6f1989faa10d025c7e775faa29146f311 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Sun, 6 Oct 2019 11:59:48 +0200 Subject: [PATCH] rename default config file --- webhook-listener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webhook-listener.py b/webhook-listener.py index 9e7b169..7025538 100755 --- a/webhook-listener.py +++ b/webhook-listener.py @@ -36,6 +36,6 @@ if __name__ == "__main__": parser.add_argument("-i", "--interface", default="0.0.0.0", help="Interface to listen on") parser.add_argument("-p", "--port", default="5000", help="Port to listen on") - parser.add_argument("-c", default="webhooks.config", help="Config for handling of webhooks") + parser.add_argument("-c", default="webhook.config", help="Config for handling of webhooks") args = parser.parse_args() app.run(host=args.interface, port=args.port)