Create __init__.py

This commit is contained in:
MuxZeroNet 2017-02-17 01:23:05 +00:00 committed by GitHub
parent ddc3f72afb
commit ce4a91b679

View file

@ -0,0 +1,10 @@
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