]> granicus.if.org Git - python/commitdiff
Add missing import of 'usage' string.
authorGreg Ward <gward@python.net>
Thu, 6 Apr 2000 02:07:41 +0000 (02:07 +0000)
committerGreg Ward <gward@python.net>
Thu, 6 Apr 2000 02:07:41 +0000 (02:07 +0000)
Lib/distutils/dist.py

index 50e755697ba24133f7644f668b742c7dafa003f8..7246b74001311c1f20021f8151f7718b7830f59a 100644 (file)
@@ -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 --