summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2014-08-29 21:09:23 -0400
committerDonald Stufft <donald@stufft.io>2014-08-29 21:09:23 -0400
commit08ebc0a8bd5ea5e407caef8b5b0c265bdd7f5876 (patch)
treeca848a6969e9ca19e4ea62aeaa45fa561aa789b0
parentcb26c0b8cb00d18c75503ce4ee59a95a619e8189 (diff)
downloadpip-08ebc0a8bd5ea5e407caef8b5b0c265bdd7f5876.tar.gz
Revert "Merge pull request #1986 from matham/master"
This reverts commit cb26c0b8cb00d18c75503ce4ee59a95a619e8189, reversing changes made to bb8c7428ab40dde4af92e696ff518e82e214cd24.
-rw-r--r--pip/locations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pip/locations.py b/pip/locations.py
index 4d5d872f3..1d4026516 100644
--- a/pip/locations.py
+++ b/pip/locations.py
@@ -62,7 +62,7 @@ def __get_username():
def _get_build_prefix():
""" Returns a safe build_prefix """
path = os.path.join(tempfile.gettempdir(), 'pip_build_%s' %
- __get_username().replace(' ', '_'))
+ __get_username())
if sys.platform == 'win32':
""" on windows(tested on 7) temp dirs are isolated """
return path