diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-07-31 16:12:37 +0000 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-07-31 16:12:37 +0000 |
commit | f36706442b4c1913ea8f7953993b9e03f3adf623 (patch) | |
tree | 2308f4288a266ff5edc9664ddd44261882367d43 /bin | |
parent | dc2321f5fe5fcfc143da81d694baf0b767eb2cbe (diff) | |
download | vyos-cloud-init-f36706442b4c1913ea8f7953993b9e03f3adf623.tar.gz vyos-cloud-init-f36706442b4c1913ea8f7953993b9e03f3adf623.zip |
address Daniel's comments in review
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cloud-init | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/cloud-init b/bin/cloud-init index c808eda5..d0ac4c7f 100755 --- a/bin/cloud-init +++ b/bin/cloud-init @@ -636,7 +636,8 @@ def main(): "running single module %s" % args.name) report_on = args.report - args.reporter = reporting.ReportStack(rname, rdesc, reporting=report_on) + args.reporter = reporting.ReportStack( + rname, rdesc, reporting_enabled=report_on) with args.reporter: return util.log_time( logfunc=LOG.debug, msg="cloud-init mode '%s'" % name, |