diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-29 14:06:26 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-29 14:06:26 -0500 |
commit | 4a7ea62f3efc4297bcc8c2a8094fa687474fb5f1 (patch) | |
tree | 9c6866e7fecac94d381b9fba2aa6d18fa93779ab /setuptools/command/easy_install.py | |
parent | 42d0bc2269e6a1ddfb056e70b95712ad31401c89 (diff) | |
download | external_python_setuptools-4a7ea62f3efc4297bcc8c2a8094fa687474fb5f1.tar.gz external_python_setuptools-4a7ea62f3efc4297bcc8c2a8094fa687474fb5f1.tar.bz2 external_python_setuptools-4a7ea62f3efc4297bcc8c2a8094fa687474fb5f1.zip |
Reindent using textwrap
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index a71a7f36..d368e1a3 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -2121,10 +2121,10 @@ def main(argv=None, **kw): from setuptools.dist import Distribution import distutils.core - USAGE = """\ -usage: %(script)s [options] requirement_or_url ... - or: %(script)s --help -""" + USAGE = textwrap.dedent(""" + usage: %(script)s [options] requirement_or_url ... + or: %(script)s --help + """).lstrip() def gen_usage(script_name): return USAGE % dict( |