diff options
author | Greg Ward <gward@python.net> | 2000-04-26 02:29:51 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-04-26 02:29:51 (GMT) |
commit | 6ce94b72c6764c2d72ecb6128eeb8902f6798f79 (patch) | |
tree | b65c5715d005c007ea79622e639dce4bedcc2523 /Lib/distutils/command/bdist_dumb.py | |
parent | e5a584e86572a1ae85d99bc2a77b439d7024934f (diff) | |
download | cpython-6ce94b72c6764c2d72ecb6128eeb8902f6798f79.zip cpython-6ce94b72c6764c2d72ecb6128eeb8902f6798f79.tar.gz cpython-6ce94b72c6764c2d72ecb6128eeb8902f6798f79.tar.bz2 |
Harry Henry Gebel: import exception classes.
Diffstat (limited to 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 0a68d00..23672a6 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/command/bdist_dumb.py @@ -11,7 +11,7 @@ __revision__ = "$Id$" import os from distutils.core import Command from distutils.util import get_platform, create_tree, remove_tree - +from distutils.errors import * class bdist_dumb (Command): |