diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 17:56:17 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 17:56:17 -0400 |
commit | a70f60acf3283a0f4684a5d22bc710004f2f1ed3 (patch) | |
tree | 57f32165f01a48392b9813966ed6f88f03a7a493 /Lib/distutils/command/install.py | |
parent | ce9cc4910481ec96a4024ffe36475e2c9feebfa1 (diff) | |
download | cpython-git-a70f60acf3283a0f4684a5d22bc710004f2f1ed3.tar.gz |
Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Lib/distutils/command/install.py')
-rw-r--r-- | Lib/distutils/command/install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index f1f3bd5c6f..b9f1c6c566 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -265,8 +265,8 @@ class install (Command): if self.user and (self.prefix or self.exec_prefix or self.home or self.install_base or self.install_platbase): - raise DistutilsOptionError("can't combine user with with prefix/" - "exec_prefix/home or install_(plat)base") + raise DistutilsOptionError("can't combine user with prefix, " + "exec_prefix/home, or install_(plat)base") # Next, stuff that's wrong (or dubious) only on certain platforms. if os.name != "posix": |