10 lines
230 B
Python
10 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
|