~andrewjbeach/juju-ci-tools/make-local-patcher

« back to all changes in this revision

Viewing changes to assess_log_rotation.py

  • Committer: Christopher Lee
  • Date: 2016-10-30 23:17:23 UTC
  • mfrom: (1697 trunk)
  • mto: This revision was merged to the branch mainline in revision 1698.
  • Revision ID: chris.lee@canonical.com-20161030231723-weuexhcfcp9jkz0i
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
from deploy_stack import (
11
11
    boot_context,
12
 
    tear_down,
13
12
    update_env,
14
13
    )
15
14
from jujucharm import (
216
215
    if jes_enabled:
217
216
        client.env.juju_home = jes_home_path(client.env.juju_home,
218
217
                                             args.temp_env_name)
219
 
    tear_down(client, jes_enabled)
 
218
    client.tear_down()
220
219
    return client
221
220
 
222
221