Merge lp:~allenap/launchpad/itch into lp:launchpad

Proposed by Gavin Panella
Status: Merged
Approved by: Graham Binns
Approved revision: no longer in the source branch.
Merged at revision: not available
Proposed branch: lp:~allenap/launchpad/itch
Merge into: lp:launchpad
Diff against target: 9 lines
1 file modified
utilities/update-sourcecode (+1/-1)
To merge this branch: bzr merge lp:~allenap/launchpad/itch
Reviewer Review Type Date Requested Status
Graham Binns (community) Approve
Review via email: mp+12576@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Gavin Panella (allenap) wrote :

utilities/update-sourcecode has stopped working with recent bzr installations from the beta PPA, because there is no longer any support for bzrlib with python 2.4. Thankfully this script runs fine with python 2.5 or 2.6. I chose 2.5 so that it will still run on Hardy. I also made it run with unbuffered stdin/stdout (-u) because otherwise there was no progress visible when running it via rocketfuel-get until it completed.

Revision history for this message
Graham Binns (gmb) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'utilities/update-sourcecode'
2--- utilities/update-sourcecode 2009-09-27 02:04:42 +0000
3+++ utilities/update-sourcecode 2009-09-29 09:10:31 +0000
4@@ -1,4 +1,4 @@
5-#!/usr/bin/python2.4
6+#!/usr/bin/python2.5 -u
7 #
8 # Copyright 2009 Canonical Ltd. This software is licensed under the
9 # GNU Affero General Public License version 3 (see the file LICENSE).