Browse Source

Minor bugfix

Josh Yelon 19 years ago
parent
commit
2022f48471
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/directscripts/packpanda.py

+ 1 - 1
direct/src/directscripts/packpanda.py

@@ -70,7 +70,7 @@ OPTIONS = ParseOptions(sys.argv[1:])
 
 
 PANDA=None
 PANDA=None
 for dir in sys.path:
 for dir in sys.path:
-    if (dir != "") and os.path.exists(os.path.join(dir,"direct")) and os.path.exists(os.path.join(dir,"pandac")) and os.path.exists(os.path.join(dir,"python")):
+    if (dir != "") and os.path.exists(os.path.join(dir,"direct")) and os.path.exists(os.path.join(dir,"pandac")):
         PANDA=os.path.abspath(dir)
         PANDA=os.path.abspath(dir)
 if (PANDA is None):
 if (PANDA is None):
   sys.exit("Cannot locate the panda root directory in the python path (cannot locate directory containing direct and pandac).")
   sys.exit("Cannot locate the panda root directory in the python path (cannot locate directory containing direct and pandac).")