Browse Source

paste-buffer error

David Rose 16 years ago
parent
commit
6d07d897a8
1 changed files with 5 additions and 6 deletions
  1. 5 6
      direct/src/p3d/Packager.py

+ 5 - 6
direct/src/p3d/Packager.py

@@ -2733,12 +2733,11 @@ class Packager:
                                resources = resources, dependencyDir = '')
 
         else:
-            # Anywhere else, we just ship the executable file p3dcert.exe.
-            self.do_file('p3dcert.exe')
-
-        self.do_file('p3dpython.exe')
-        if self.platform.startswith('win'):
-            self.do_file('p3dpythonw.exe')
+            # Anywhere else, we just ship the executable file p3dpython.exe.
+            self.do_file('p3dpython.exe')
+            if self.platform.startswith('win'):
+                self.do_file('p3dpythonw.exe')
+                
         self.do_file('libp3dpython.dll')
 
     def do_freeze(self, filename, compileToExe = False):