renommage de app en minwii (ça va tout péter…).
[minwii.git] / src / app / startlogreader.py
diff --git a/src/app/startlogreader.py b/src/app/startlogreader.py
deleted file mode 100755 (executable)
index d49d8ac..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-"""
-lancement du lecteur de fichier de log minwii
-
-$Id$
-$URL$
-"""
-from os.path import realpath, sep
-import sys
-
-
-def main() :
-    from optparse import OptionParser
-    import pygame
-    from logfilereader import LogFilePlayer
-    
-    usage = "%prog logfile"
-    op = OptionParser(usage)
-    options, args = op.parse_args()
-    if len(args) != 1 :
-        op.error("incorrect number of arguments")
-    
-    
-    pygame.init()
-    lfp = LogFilePlayer(args[0])
-    lfp.run()
-    pygame.quit()   
-    
-    
-#    lr = LogFileReader(args[0])
-#    
-#    print lr.getSongFile()
-#        
-    
-
-if __name__ == "__main__" :
-    minwiipath = realpath(__file__).split(sep)
-    minwiipath = minwiipath[:-2]
-    minwiipath = sep.join(minwiipath)
-    sys.path.insert(1, minwiipath)
-    main()