summaryrefslogtreecommitdiff
path: root/manager.py
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-06-16 21:58:13 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-06-16 21:58:13 -0500
commitc5465f7ceed37f1ba6575248e1035e1430e78921 (patch)
treed8d49d0b716f7188ffe2c27b4ca92361905215d2 /manager.py
parentb8df4605b42d9a61bb4ae4731efabbdc38166063 (diff)
downloadimmich-frame-c5465f7ceed37f1ba6575248e1035e1430e78921.tar.xz
immich-frame-c5465f7ceed37f1ba6575248e1035e1430e78921.zip
config route and fix config saving/creation
Diffstat (limited to 'manager.py')
-rw-r--r--manager.py2
1 files changed, 1 insertions, 1 deletions
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)