Removed source code from this repository to avoid confusion
[jamaendo] / scripts / player
diff --git a/scripts/player b/scripts/player
deleted file mode 100755 (executable)
index 802bd4d..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-
-# 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)
-
-def main():
-    #from jamaui.ui import JamaUI
-    #player = JamaUI()
-    from jamaui.console import Console
-    player = Console()
-
-    player.run()
-
-if __name__=="__main__":
-    main()