Fix oauth ub session

This commit is contained in:
OzzieIsaacs
2020-12-08 11:24:07 +01:00
parent f677dcb1f4
commit 986d4c99bd
3 changed files with 12707 additions and 860 deletions

View File

@@ -89,7 +89,7 @@ class Singleton:
except AttributeError:
self._instance = self._decorated()
return self._instance
except ImportError as e:
except (ImportError, NameError) as e:
log.debug(e)
return None