Skip to content

Commit

Permalink
Fix instance config pull (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdHeat authored Sep 4, 2024
1 parent 609e940 commit 5c25270
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ctfcli/core/instance/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ def getall():
config[c["key"]] = c["value"]

# Not much point in saving internal configs
del config["ctf_version"]
del config["version_latest"]
del config["next_update_check"]
del config["setup"]
config.pop("ctf_version", None)
config.pop("version_latest", None)
config.pop("next_update_check", None)
config.pop("setup", None)

return config

Expand Down

0 comments on commit 5c25270

Please sign in to comment.