We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640123c commit b68bb73Copy full SHA for b68bb73
omemo/cli.py
@@ -2,11 +2,11 @@
2
3
try:
4
import prettytable
5
-except ModuleNotFoundError:
+except ModuleNotFoundError as e:
6
raise ModuleNotFoundError(
7
"CLI dependency \"prettytable\" not found. Install python-omemo with CLI dependencies using"
8
" \"pip install OMEMO[cli]\""
9
- )
+ ) from e
10
11
from .backend import Backend
12
from .session_manager import SessionManager, UnknownNamespace
0 commit comments