zeronet/plugins/disabled-StemPort/__init__.py
2017-02-17 01:23:05 +00:00

10 lines
228 B
Python

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