diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-04 00:06:18 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-04 00:06:18 -0400 |
commit | e8dbb411b4c6e282b6848066dcbac3ced6d3a880 (patch) | |
tree | a907463f6bd7365682a3e7306b864c14f93c780e /setuptools/command/alias.py | |
parent | 3b7000ad8a3eba032d4d2654e31ae64c976cb494 (diff) | |
parent | ff75a6cbdbcde8d9e3b979c30c3d6e64a1bc5374 (diff) | |
download | external_python_setuptools-e8dbb411b4c6e282b6848066dcbac3ced6d3a880.tar.gz external_python_setuptools-e8dbb411b4c6e282b6848066dcbac3ced6d3a880.tar.bz2 external_python_setuptools-e8dbb411b4c6e282b6848066dcbac3ced6d3a880.zip |
Merge setuptools/command/*
--HG--
branch : Setuptools-Distribute merge
Diffstat (limited to 'setuptools/command/alias.py')
-rwxr-xr-x | setuptools/command/alias.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/alias.py b/setuptools/command/alias.py index f5368b29..40c00b55 100755 --- a/setuptools/command/alias.py +++ b/setuptools/command/alias.py @@ -9,7 +9,7 @@ def shquote(arg): """Quote an argument for later parsing by shlex.split()""" for c in '"', "'", "\\", "#": if c in arg: return repr(arg) - if arg.split()<>[arg]: + if arg.split()!=[arg]: return repr(arg) return arg @@ -33,7 +33,7 @@ class alias(option_base): def finalize_options(self): option_base.finalize_options(self) - if self.remove and len(self.args)<>1: + if self.remove and len(self.args)!=1: raise DistutilsOptionError( "Must specify exactly one argument (the alias name) when " "using --remove" |