diff --git a/contrib/build-installer b/contrib/build-installer index c3defcc69..828883c3c 100755 --- a/contrib/build-installer +++ b/contrib/build-installer @@ -97,7 +97,7 @@ def main(): fp.write(base64.decodestring(ZIPFILE)) # Add the zipfile to sys.path so that we can import it - sys.path = [pip_zip] + sys.path + sys.path.insert(0, pip_zip) # Run the bootstrap bootstrap(tmpdir=tmpdir) diff --git a/contrib/get-pip.py b/contrib/get-pip.py index de3ce00ab..2e0cfaa37 100755 --- a/contrib/get-pip.py +++ b/contrib/get-pip.py @@ -20347,7 +20347,7 @@ def main(): fp.write(base64.decodestring(ZIPFILE)) # Add the zipfile to sys.path so that we can import it - sys.path = [pip_zip] + sys.path + sys.path.insert(0, pip_zip) # Run the bootstrap bootstrap(tmpdir=tmpdir)