__init__.py 230 B

12345678910
  1. try:
  2. from stem.control import Controller
  3. stem_found = True
  4. except Exception as err:
  5. print "STEM NOT FOUND! %s" % err
  6. stem_found = False
  7. if stem_found:
  8. print "Starting Stem plugin..."
  9. import StemPortPlugin