Merge lp:~mwhudson/launchpad/fix-ec2-harder-dammit into lp:launchpad

Proposed by Michael Hudson-Doyle
Status: Merged
Merged at revision: not available
Proposed branch: lp:~mwhudson/launchpad/fix-ec2-harder-dammit
Merge into: lp:launchpad
Diff against target: 21 lines (+2/-2)
1 file modified
lib/devscripts/ec2test/ec2test-remote.py (+2/-2)
To merge this branch: bzr merge lp:~mwhudson/launchpad/fix-ec2-harder-dammit
Reviewer Review Type Date Requested Status
Paul Hummer (community) code Approve
Review via email: mp+23897@code.launchpad.net

Commit message

Fix syntax error in ec2-test-remote.py

Description of the change

See the commit message.

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

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/devscripts/ec2test/ec2test-remote.py'
2--- lib/devscripts/ec2test/ec2test-remote.py 2010-04-21 17:49:11 +0000
3+++ lib/devscripts/ec2test/ec2test-remote.py 2010-04-22 03:07:29 +0000
4@@ -4,6 +4,8 @@
5 # Copyright 2009 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 __metatype__ = type
11
12 import datetime
13@@ -32,8 +34,6 @@
14
15 import subunit
16
17-from __future__ import with_statement
18-
19
20 class SummaryResult(unittest.TestResult):
21 """Test result object used to generate the summary."""