Commit 9e7e18a9 authored by Michal Čihař's avatar Michal Čihař

Use upper case module level vars

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 75bf57c3
...@@ -20,6 +20,6 @@ ...@@ -20,6 +20,6 @@
import os import os
virtenv = os.environ['OPENSHIFT_PYTHON_DIR'] + '/virtenv/' VIRTENV = os.environ['OPENSHIFT_PYTHON_DIR'] + '/virtenv/'
virtualenv = os.path.join(virtenv, 'bin/activate_this.py') VIRTUALENV = os.path.join(VIRTENV, 'bin/activate_this.py')
execfile(virtualenv, dict(__file__=virtualenv)) execfile(VIRTUALENV, dict(__file__=VIRTUALENV))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment