From 98fe86e3c6ac632f17c734bb52ac27d73ce1457f Mon Sep 17 00:00:00 2001 From: tmaeno Date: Wed, 11 Jan 2023 18:00:48 +0100 Subject: [PATCH] configurator with files --- PandaPkgInfo.py | 2 +- pandaserver/configurator/aux.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PandaPkgInfo.py b/PandaPkgInfo.py index 081edea2e..7ee7de805 100644 --- a/PandaPkgInfo.py +++ b/PandaPkgInfo.py @@ -1 +1 @@ -release_version = "0.0.47" +release_version = "0.0.48" diff --git a/pandaserver/configurator/aux.py b/pandaserver/configurator/aux.py index 6da4f04d2..01bd954ec 100644 --- a/pandaserver/configurator/aux.py +++ b/pandaserver/configurator/aux.py @@ -34,7 +34,7 @@ def get_dump(url): if not p.scheme or p.scheme == 'file': try: with open(p.path) as f: - return json.loads(f) + return json.load(f) except Exception: return None if panda_config.configurator_use_cert: