Merge lp:~milo/linaro-license-protection/bug1183689 into lp:linaro-license-protection/configs

Proposed by Milo Casagrande
Status: Merged
Approved by: James Tunnicliffe
Approved revision: 32
Merged at revision: 32
Proposed branch: lp:~milo/linaro-license-protection/bug1183689
Merge into: lp:linaro-license-protection/configs
Diff against target: 33 lines (+6/-6)
2 files modified
wsgi/wsgi_releases.py (+3/-3)
wsgi/wsgi_snapshots.py (+3/-3)
To merge this branch: bzr merge lp:~milo/linaro-license-protection/bug1183689
Reviewer Review Type Date Requested Status
James Tunnicliffe (community) Approve
Review via email: mp+165544@code.launchpad.net

This proposal supersedes a proposal from 2013-05-24.

Description of the change

Fixed Python paths to point to the correct ones.
On the new migrated EC2 instance, Python 2.6 is not installed anymore.

To post a comment you must log in.
Revision history for this message
Milo Casagrande (milo) wrote :

Fixed the target branch.

Revision history for this message
James Tunnicliffe (dooferlad) wrote :

Looks good.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'wsgi/wsgi_releases.py'
2--- wsgi/wsgi_releases.py 2012-08-23 17:07:37 +0000
3+++ wsgi/wsgi_releases.py 2013-05-24 07:34:29 +0000
4@@ -5,9 +5,9 @@
5 """
6 import os
7 import sys
8-sys.path.append("/usr/lib/python2.6/dist-packages")
9-sys.path.append("/usr/lib/pymodules/python2.6")
10-sys.path.append("/usr/lib/python2.6")
11+sys.path.append("/usr/lib/python2.7/dist-packages")
12+sys.path.append("/usr/lib/pymodules/python2.7")
13+sys.path.append("/usr/lib/python2.7")
14
15 sys.path.append("/srv/releases.linaro.org")
16 sys.path.append("/srv/releases.linaro.org/linaro-license-protection")
17
18=== modified file 'wsgi/wsgi_snapshots.py'
19--- wsgi/wsgi_snapshots.py 2012-08-23 17:07:37 +0000
20+++ wsgi/wsgi_snapshots.py 2013-05-24 07:34:29 +0000
21@@ -5,9 +5,9 @@
22 """
23 import os
24 import sys
25-sys.path.append("/usr/lib/python2.6/dist-packages")
26-sys.path.append("/usr/lib/pymodules/python2.6")
27-sys.path.append("/usr/lib/python2.6")
28+sys.path.append("/usr/lib/python2.7/dist-packages")
29+sys.path.append("/usr/lib/pymodules/python2.7")
30+sys.path.append("/usr/lib/python2.7")
31
32 sys.path.append("/srv/snapshots.linaro.org")
33 sys.path.append("/srv/snapshots.linaro.org/linaro-license-protection")

Subscribers

People subscribed via source and target branches