Skip to content

Commit

Permalink
configurator with files
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Jan 11, 2023
1 parent f6c779d commit 98fe86e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PandaPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "0.0.47"
release_version = "0.0.48"
2 changes: 1 addition & 1 deletion pandaserver/configurator/aux.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 98fe86e

Please sign in to comment.