From: Greg Ward Date: Thu, 6 Apr 2000 02:07:41 +0000 (+0000) Subject: Add missing import of 'usage' string. X-Git-Tag: v1.6a2~122 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d508fe56800b34985201de9058019612d4b3739;p=python Add missing import of 'usage' string. --- diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index 50e755697b..7246b74001 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 --