Skip to content

Commit

Permalink
Merge pull request #179 from tmaeno/master
Browse files Browse the repository at this point in the history
configurator with files
  • Loading branch information
tmaeno authored Jan 11, 2023
2 parents f6c779d + 98fe86e commit 413dff0
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 413dff0

Please sign in to comment.