From c5465f7ceed37f1ba6575248e1035e1430e78921 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Mon, 16 Jun 2025 21:58:13 -0500 Subject: config route and fix config saving/creation --- manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manager.py') diff --git a/manager.py b/manager.py index a7d8ebd..b2e101f 100644 --- a/manager.py +++ b/manager.py @@ -49,7 +49,7 @@ class PixMan: signal.signal(signal.SIGINT, PixMan.handle_sigint) self.configfile = configfile - config = Config.load(self.configfile) if os.path.exists(self.configfile) else Config(file=self.configfile) + config = Config.load(self.configfile) if os.path.exists(self.configfile) else Config() self.init_web(host, port) self.update_config(config) -- cgit v1.2.3