← Back to team overview

launchpad-reviewers team mailing list archive

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

 

Julian Edwards has proposed merging lp:~julian-edwards/launchpad/bug-623859 into lp:launchpad/devel.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)
Related bugs:
  #623859 edge rollouts broke CSS on revno 11435
  https://bugs.launchpad.net/bugs/623859


Fix bug 623859 by adding a 
from __future__ import with_statement
to lib/lp/buildmaster/model/packagebuild.py
-- 
https://code.launchpad.net/~julian-edwards/launchpad/bug-623859/+merge/33640
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~julian-edwards/launchpad/bug-623859 into lp:launchpad/devel.
=== modified file 'lib/lp/buildmaster/model/packagebuild.py'
--- lib/lp/buildmaster/model/packagebuild.py	2010-08-24 12:16:10 +0000
+++ lib/lp/buildmaster/model/packagebuild.py	2010-08-25 13:41:14 +0000
@@ -1,6 +1,8 @@
 # Copyright 2010 Canonical Ltd.  This software is licensed under the
 # GNU Affero General Public License version 3 (see the file LICENSE).
 
+from __future__ import with_statement
+
 __metaclass__ = type
 __all__ = [
     'PackageBuild',