From d2900f92c4c29cd59acac63962b664052f46535f Mon Sep 17 00:00:00 2001 From: Alexander PapaTutuWawa Date: Sun, 13 Jun 2021 21:22:58 +0200 Subject: [PATCH] fix: Used wrong file by default --- mira/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mira/base.py b/mira/base.py index 6a54265..2c3c32f 100644 --- a/mira/base.py +++ b/mira/base.py @@ -132,7 +132,7 @@ def main(): parser.add_option('-d', '--debug', dest='debug', help='Enable debug logging', action='store_true') parser.add_option('-c', '--config', dest='config', help='Location of the config.toml', - default='/etc/mira/storage.json') + default='/etc/mira/config.toml') (options, args) = parser.parse_args() verbosity = logging.DEBUG if options.debug else logging.INFO