From a6c97a304f12780cb6c896e3a2e74b1dd36b244d Mon Sep 17 00:00:00 2001 From: shortcutme Date: Tue, 21 May 2019 15:53:53 +0200 Subject: [PATCH] Remove empty exception from config.py --- src/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.py b/src/Config.py index 400d9b93..e3e6f546 100644 --- a/src/Config.py +++ b/src/Config.py @@ -528,7 +528,7 @@ class Config(object): info["ip_external"] = main.file_server.port_opened info["tor_enabled"] = main.file_server.tor_manager.enabled info["tor_status"] = main.file_server.tor_manager.status - except: + except Exception: pass return info