Index: st2.py ================================================================== --- st2.py +++ st2.py @@ -88,17 +88,18 @@ from processing import Process as Thread except: from threading import Thread Thread.stop = lambda self: None +# add library path +sys.path.insert(0, "/usr/share/streamtuner2") # pre-defined directory for modules +sys.path.insert(0, ".") # pre-defined directory for modules + # gtk modules from mygtk import pygtk, gtk, gobject, ui_file, mygtk - # custom modules -sys.path.insert(0, "/usr/share/streamtuner2") # pre-defined directory for modules -sys.path.insert(0, ".") # pre-defined directory for modules from config import conf # initializes itself, so all conf.vars are available right away import http import action # needs workaround... (action.main=main) from channels import * from channels import __print__