~hopem/maas-deployer/lp1478015

« back to all changes in this revision

Viewing changes to maas_deployer/vmaas/maasclient/clidriver.py

  • Committer: Edward Hope-Morley
  • Date: 2015-08-11 08:55:09 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: edward.hope-morley@canonical.com-20150811085509-vhns0yh32ggmrond
[hopem,r=]

First pass at preparing source for debian packaging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
    CalledProcessError,
13
13
)
14
14
 
15
 
from vmaas.util import (
 
15
from maas_deployer.vmaas.util import (
16
16
    execc,
17
17
    flatten,
18
18
)
19
 
from vmaas.maasclient.driver import MAASDriver
20
 
from vmaas.maasclient.driver import Response
 
19
from maas_deployer.vmaas.maasclient.driver import MAASDriver
 
20
from maas_deployer.vmaas.maasclient.driver import Response
21
21
 
22
22
log = logging.getLogger('vmaas.main')
23
23