import sys, os
from types import *
+
+# If DISTUTILS_DEBUG is anything other than the empty string, we run in
+# debug mode.
+DEBUG = os.environ.get('DISTUTILS_DEBUG')
+
from distutils.errors import *
from distutils.util import grok_environment_error
or: %(script)s cmd --help
"""
-
-# If DISTUTILS_DEBUG is anything other than the empty string, we run in
-# debug mode.
-DEBUG = os.environ.get('DISTUTILS_DEBUG')
-
def gen_usage (script_name):
script = os.path.basename(script_name)
return USAGE % vars()