Refactoring. Suppression de la customisation du path, inutile à présent.
authorpin <pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Thu, 28 Feb 2013 09:51:32 +0000 (09:51 +0000)
committerpin <pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Thu, 28 Feb 2013 09:51:32 +0000 (09:51 +0000)
git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@408 fe552daf-6dbe-4428-90eb-1537e0879342

src/minwii/start.py

index a9d9582..7de9b7a 100755 (executable)
@@ -8,20 +8,17 @@ $URL$
 """
 
 
+from optparse import OptionParser
+import pygame
+from app import MinWii
 
 def main(wiimoteSupport, fullscreen) :
-    import pygame
-    from app import MinWii
     pygame.init()
     minwii = MinWii(wiimoteSupport=wiimoteSupport, fullscreen=fullscreen)
     minwii.run()
     pygame.quit()
 
 if __name__ == "__main__" :
-    from os.path import realpath, sep
-    import sys
-    from optparse import OptionParser
-    
     usage = "%prog [options]"
     op = OptionParser(usage)
     
@@ -38,8 +35,4 @@ if __name__ == "__main__" :
                               u" [%default]")
     options, args = op.parse_args()
 
-    minwiipath = realpath(__file__).split(sep)
-    minwiipath = minwiipath[:-2]
-    minwiipath = sep.join(minwiipath)
-    sys.path.insert(1, minwiipath)
     main(options.wiimoteSupport, options.fullscreen)