summaryrefslogtreecommitdiff
path: root/Lib/setuptools/command/alias.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-18 17:32:12 +0000
committerTim Peters <tim.peters@gmail.com>2006-04-18 17:32:12 +0000
commit584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (patch)
treef2e33dbae88a59b367819920a5c4a2260f080788 /Lib/setuptools/command/alias.py
parent17a35f906c29e71510d749283b381d95a5de0316 (diff)
downloadcpython-git-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.gz
Whilespace normalization (reindint.py).
Diffstat (limited to 'Lib/setuptools/command/alias.py')
-rwxr-xr-xLib/setuptools/command/alias.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/Lib/setuptools/command/alias.py b/Lib/setuptools/command/alias.py
index f5368b29e9..1df474a34b 100755
--- a/Lib/setuptools/command/alias.py
+++ b/Lib/setuptools/command/alias.py
@@ -11,17 +11,17 @@ def shquote(arg):
if c in arg: return repr(arg)
if arg.split()<>[arg]:
return repr(arg)
- return arg
+ return arg
class alias(option_base):
"""Define a shortcut that invokes one or more commands"""
-
+
description = "define a shortcut to invoke one or more commands"
command_consumes_arguments = True
user_options = [
- ('remove', 'r', 'remove (unset) the alias'),
+ ('remove', 'r', 'remove (unset) the alias'),
] + option_base.user_options
boolean_options = option_base.boolean_options + ['remove']
@@ -77,6 +77,3 @@ def format_alias(name, aliases):
else:
source = '--filename=%r' % source
return source+name+' '+command
-
-
-