浏览代码

deploy-ng: Remove some debug prints

Mitchell Stokes 9 年之前
父节点
当前提交
e85a2aa140
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      direct/src/showutil/dist.py

+ 0 - 2
direct/src/showutil/dist.py

@@ -43,7 +43,6 @@ def find_packages(whlfile):
 class build(distutils.command.build.build):
     def run(self):
         distutils.command.build.build.run(self)
-        print(self.distribution.deploy_platforms)
         if not self.distribution.deploy_platforms:
             platforms = [p3d.PandaSystem.get_platform()]
             use_wheels = False
@@ -126,7 +125,6 @@ class build(distutils.command.build.build):
                     # This was found in a wheel, extract it
                     whl, wf = source_path.split('.whl/')
                     whl += '.whl'
-                    print(whl, source_path)
                     whlfile = whlfiles[whl]
                     print("copying {} -> {}".format(os.path.join(whl, wf), target_path))
                     with open(target_path, 'wb') as f: