Merge lp:~jtv/maas/1.5-bug-1302772 into lp:~maas-committers/maas/trunk

Proposed by Jeroen T. Vermeulen
Status: Superseded
Proposed branch: lp:~jtv/maas/1.5-bug-1302772
Merge into: lp:~maas-committers/maas/trunk
Diff against target: 21 lines (+9/-0) (has conflicts)
1 file modified
src/provisioningserver/custom_hardware/seamicro.py (+9/-0)
Text conflict in src/provisioningserver/custom_hardware/seamicro.py
To merge this branch: bzr merge lp:~jtv/maas/1.5-bug-1302772
Reviewer Review Type Date Requested Status
Andres Rodriguez (community) Needs Fixing
Review via email: mp+214550@code.launchpad.net

This proposal has been superseded by a proposal from 2014-04-07.

Commit message

Backport trunk r2235: Continue to accept (but do not use) the old “boot” section in pserv.yaml. Otherwise, upgrade breaks while parsing this file.

To post a comment you must log in.
Revision history for this message
Andres Rodriguez (andreserl) wrote :

There are conflicts in the branch

review: Needs Fixing

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/provisioningserver/custom_hardware/seamicro.py'
2--- src/provisioningserver/custom_hardware/seamicro.py 2014-04-07 10:39:19 +0000
3+++ src/provisioningserver/custom_hardware/seamicro.py 2014-04-07 14:25:30 +0000
4@@ -24,8 +24,17 @@
5 import urlparse
6
7 import provisioningserver.custom_hardware.utils as utils
8+<<<<<<< TREE
9 from seamicroclient import exceptions as seamicro_exceptions
10 from seamicroclient.v2 import client as seamicro_client
11+=======
12+from seamicroclient.v2 import (
13+ client as seamicro_client,
14+ )
15+from seamicroclient import (
16+ exceptions as seamicro_exceptions,
17+ )
18+>>>>>>> MERGE-SOURCE
19
20
21 logger = logging.getLogger(__name__)