Commit 6b213766 authored by Greg Ward's avatar Greg Ward

Import from 'types' module.

Added 'ztar', 'tar' to 'format_command' dictionary.
parent 6ce00b44
...@@ -8,6 +8,7 @@ distribution).""" ...@@ -8,6 +8,7 @@ distribution)."""
__revision__ = "$Id$" __revision__ = "$Id$"
import os, string import os, string
from types import *
from distutils.core import Command from distutils.core import Command
...@@ -25,6 +26,8 @@ class bdist (Command): ...@@ -25,6 +26,8 @@ class bdist (Command):
'nt': 'zip', } 'nt': 'zip', }
format_command = { 'gztar': 'bdist_dumb', format_command = { 'gztar': 'bdist_dumb',
'ztar': 'bdist_dumb',
'tar': 'bdist_dumb',
'zip': 'bdist_dumb', } 'zip': 'bdist_dumb', }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment