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
=== modified file 'lib/devscripts/ec2test/ec2test-remote.py'
--- lib/devscripts/ec2test/ec2test-remote.py 2010-04-21 17:49:11 +0000
+++ lib/devscripts/ec2test/ec2test-remote.py 2010-04-22 03:07:29 +0000
@@ -4,6 +4,8 @@
4# Copyright 2009 Canonical Ltd. This software is licensed under the4# Copyright 2009 Canonical Ltd. This software is licensed under the
5# GNU Affero General Public License version 3 (see the file LICENSE).5# GNU Affero General Public License version 3 (see the file LICENSE).
66
7from __future__ import with_statement
8
7__metatype__ = type9__metatype__ = type
810
9import datetime11import datetime
@@ -32,8 +34,6 @@
3234
33import subunit35import subunit
3436
35from __future__ import with_statement
36
3737
38class SummaryResult(unittest.TestResult):38class SummaryResult(unittest.TestResult):
39 """Test result object used to generate the summary."""39 """Test result object used to generate the summary."""