Merge lp:~julian-edwards/launchpad/bug-623859 into lp:launchpad

Proposed by Julian Edwards
Status: Merged
Approved by: Paul Hummer
Approved revision: no longer in the source branch.
Merged at revision: 11439
Proposed branch: lp:~julian-edwards/launchpad/bug-623859
Merge into: lp:launchpad
Diff against target: 12 lines (+2/-0)
1 file modified
lib/lp/buildmaster/model/packagebuild.py (+2/-0)
To merge this branch: bzr merge lp:~julian-edwards/launchpad/bug-623859
Reviewer Review Type Date Requested Status
Paul Hummer (community) Approve
Review via email: mp+33640@code.launchpad.net

Description of the change

Fix bug 623859 by adding a
from __future__ import with_statement
to lib/lp/buildmaster/model/packagebuild.py

To post a comment you must log in.
Revision history for this message
Paul Hummer (rockstar) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/buildmaster/model/packagebuild.py'
2--- lib/lp/buildmaster/model/packagebuild.py 2010-08-24 12:16:10 +0000
3+++ lib/lp/buildmaster/model/packagebuild.py 2010-08-25 13:41:14 +0000
4@@ -1,6 +1,8 @@
5 # Copyright 2010 Canonical Ltd. This software is licensed under the
6 # GNU Affero General Public License version 3 (see the file LICENSE).
7
8+from __future__ import with_statement
9+
10 __metaclass__ = type
11 __all__ = [
12 'PackageBuild',