Skip to content

Commit 5e3f337

Browse files
committed
Updated scripts in ietf/bin/ to look in env/bin/ for the virtualenv activation script.
- Legacy-Id: 12560
1 parent ef8adb1 commit 5e3f337

25 files changed

Lines changed: 25 additions & 25 deletions

ietf/bin/2016-05-25-collect-photos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
99
sys.path = [ basedir ] + sys.path
1010
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1111

12-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
12+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1313
if os.path.exists(virtualenv_activation):
1414
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1515

ietf/bin/announce-header-change

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
88
sys.path = [ basedir ] + sys.path
99
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1010

11-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
11+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1212
if os.path.exists(virtualenv_activation):
1313
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1414

ietf/bin/create-break-sessions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
99
sys.path = [ basedir ] + sys.path
1010
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1111

12-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
12+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1313
if os.path.exists(virtualenv_activation):
1414
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1515

ietf/bin/create-charter-newrevisiondocevents

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
1212
sys.path = [ basedir ] + sys.path
1313
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1414

15-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
15+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1616
if os.path.exists(virtualenv_activation):
1717
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1818

ietf/bin/dump-draft-info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
1212
sys.path = [ basedir ] + sys.path
1313
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1414

15-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
15+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1616
if os.path.exists(virtualenv_activation):
1717
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1818

ietf/bin/email-sync-discrepancies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
88
sys.path = [ basedir ] + sys.path
99
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1010

11-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
11+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1212
if os.path.exists(virtualenv_activation):
1313
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1414

ietf/bin/expire-ids

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
88
sys.path = [ basedir ] + sys.path
99
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1010

11-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
11+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1212
if os.path.exists(virtualenv_activation):
1313
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1414

ietf/bin/expire-last-calls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
88
sys.path = [ basedir ] + sys.path
99
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1010

11-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
11+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1212
if os.path.exists(virtualenv_activation):
1313
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1414

ietf/bin/expire-submissions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
88
sys.path = [ basedir ] + sys.path
99
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1010

11-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
11+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1212
if os.path.exists(virtualenv_activation):
1313
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1414

ietf/bin/find-submission-confirmation-email-in-postfix-log

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
1212
sys.path = [ basedir ] + sys.path
1313
os.environ["DJANGO_SETTINGS_MODULE"] = "ietf.settings"
1414

15-
virtualenv_activation = os.path.join(basedir, "bin", "activate_this.py")
15+
virtualenv_activation = os.path.join(basedir, "env", "bin", "activate_this.py")
1616
if os.path.exists(virtualenv_activation):
1717
execfile(virtualenv_activation, dict(__file__=virtualenv_activation))
1818

0 commit comments

Comments
 (0)