ZeroNet/plugins/disabled-StemPort/__init__.py

11 lines
230 B
Python
Raw Normal View History

2017-02-17 02:23:05 +01:00
try:
from stem.control import Controller
stem_found = True
2017-07-16 22:35:14 +02:00
except Exception as err:
2017-02-17 02:23:05 +01:00
print "STEM NOT FOUND! %s" % err
stem_found = False
if stem_found:
print "Starting Stem plugin..."
import StemPortPlugin