Initial playlist support
[jamaendo] / scripts / jamaendo
index 5de2686..debdf19 100755 (executable)
@@ -1,14 +1,21 @@
 #!/usr/bin/env python2.5
 
+# Dependencies:
+
+# python-simplejson
+# python-lxml
+# python-gst0.10
+
+
 # debugging hack - add . to path
 import os, sys
 local_module_dir = os.path.join(os.path.dirname(sys.argv[0]), '..')
 if os.path.isdir(local_module_dir):
-    sys.path.append(local_module_dir)
+    sys.path = [local_module_dir] + sys.path
 
 def main():
-    from jamaui.ui import JamaUI
-    player = JamaUI()
+    from jamaui.ui import Jamaui
+    player = Jamaui()
 
     player.run()