Explorar o código

Offer help when . bin/activate is missing.

Steve Thielemann %!s(int64=5) %!d(string=hai) anos
pai
achega
d0e91b2723
Modificáronse 1 ficheiros con 6 adicións e 1 borrados
  1. 6 1
      twgs-proxy.py

+ 6 - 1
twgs-proxy.py

@@ -1,7 +1,12 @@
 #!/usr/bin/env python3
 
 import sys
-from twisted.internet import reactor
+try:
+    from twisted.internet import reactor
+except ImportError:
+    print("\x1b[1mHey!\x1b[0m Activate your venv first!")
+    sys.exit(2)
+
 from twisted.internet import protocol
 import logging
 import logging.config