diff --git a/env/pip.conf b/env/pip.conf new file mode 100644 index 000000000..212621844 --- /dev/null +++ b/env/pip.conf @@ -0,0 +1,3 @@ +[install] +ignore-installed = true + diff --git a/ietf/wsgi.py b/ietf/wsgi.py index 28c5b2b21..3a4cb3edb 100644 --- a/ietf/wsgi.py +++ b/ietf/wsgi.py @@ -44,7 +44,7 @@ import sys path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Virtualenv support -virtualenv_activation = os.path.join(path, "bin", "activate_this.py") +virtualenv_activation = os.path.join(path, "env", "bin", "activate_this.py") if os.path.exists(virtualenv_activation): execfile(virtualenv_activation, dict(__file__=virtualenv_activation))