summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/dist.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-04-06 02:07:41 (GMT)
committerGreg Ward <gward@python.net>2000-04-06 02:07:41 (GMT)
commit7d508fe56800b34985201de9058019612d4b3739 (patch)
tree4fcb847072387efefc1732c4a2bd1417b72aa5d5 /Lib/distutils/dist.py
parent6d5c6bdb2521bff4d5f90bf72f136ca52d82dca4 (diff)
downloadcpython-7d508fe56800b34985201de9058019612d4b3739.zip
cpython-7d508fe56800b34985201de9058019612d4b3739.tar.gz
cpython-7d508fe56800b34985201de9058019612d4b3739.tar.bz2
Add missing import of 'usage' string.
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r--Lib/distutils/dist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index 50e7556..7246b74 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -183,9 +183,9 @@ class Distribution:
commands (currently, this only happens if user asks for
help)."""
- # late import because of mutual dependence between these classes
+ # late import because of mutual dependence between these modules
from distutils.cmd import Command
-
+ from distutils.core import usage
# We have to parse the command line a bit at a time -- global
# options, then the first command, then its options, and so on --