From 6b213766d8ded8021ae775e48ff46ae06d7bc11c Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Fri, 31 Mar 2000 04:53:41 +0000 Subject: [PATCH] Import from 'types' module. Added 'ztar', 'tar' to 'format_command' dictionary. --- Lib/distutils/command/bdist.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index 5630828580d..12397fcac19 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/command/bdist.py @@ -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', }