]> granicus.if.org Git - python/commitdiff
Import from 'types' module.
authorGreg Ward <gward@python.net>
Fri, 31 Mar 2000 04:53:41 +0000 (04:53 +0000)
committerGreg Ward <gward@python.net>
Fri, 31 Mar 2000 04:53:41 +0000 (04:53 +0000)
Added 'ztar', 'tar' to 'format_command' dictionary.

Lib/distutils/command/bdist.py

index 5630828580d5d443350fd39337651d1f597d9dc9..12397fcac194024dba33ba50a8699fbe26fc0092 100644 (file)
@@ -8,6 +8,7 @@ distribution)."""
 __revision__ = "$Id$"
 
 import os, string
+from types import *
 from distutils.core import Command
 
 
@@ -25,6 +26,8 @@ class bdist (Command):
                        'nt': 'zip', }
 
     format_command = { 'gztar': 'bdist_dumb',
+                       'ztar':  'bdist_dumb',
+                       'tar':   'bdist_dumb',
                        'zip':   'bdist_dumb', }