ZeroNet/plugins/disabled-StemPort/__init__.py
2017-07-16 22:35:14 +02:00

11 lines
230 B
Python

try:
from stem.control import Controller
stem_found = True
except Exception as err:
print "STEM NOT FOUND! %s" % err
stem_found = False
if stem_found:
print "Starting Stem plugin..."
import StemPortPlugin