proton: Stop using bare except.

This commit is contained in:
Arkadiusz Hiler 2024-07-26 13:51:32 +03:00
parent b2508139c2
commit 9fcb2d183a

2
proton
View File

@ -1329,7 +1329,7 @@ class Session:
if key not in self.env:
self.env[key] = value
used_user_settings[key] = value
except:
except Exception:
log("************************************************")
log("THERE IS AN ERROR IN YOUR user_settings.py FILE:")
log("%s" % sys.exc_info()[1])