summaryrefslogtreecommitdiff
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 17:58:27 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 17:58:27 -0400
commit1b2883dc842aded6ab4a64be23ab26da587aad16 (patch)
treef2a0fd086349b8557562a74e1fdf072ec645383f /Lib/distutils/command
parentab1998b15608cb5b4ddc27d54b47a381d1b69b09 (diff)
parent4013fbbf41766c34149d621d3714bc374e121614 (diff)
downloadcpython-1b2883dc842aded6ab4a64be23ab26da587aad16.tar.gz
Merge 3.2, 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')
-rw-r--r--Lib/distutils/command/install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 0161898f49..9b1c36af82 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -278,8 +278,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":