diff options
-rw-r--r-- | ogcp/views.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ogcp/views.py b/ogcp/views.py index 862cc3e..9374606 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -1534,7 +1534,12 @@ def delete_server(server): with open(filename, 'r+') as file: config = json.load(file) - config['SERVERS'].remove(server_dict) + try: + config['SERVERS'].remove(server_dict) + except (KeyError, ValueError): + config.pop('IP') + config.pop('PORT') + config.pop('API_TOKEN') file.seek(0) json.dump(config, file, indent='\t') |