diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-07-11 11:25:01 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-07-11 11:25:01 -0700 |
commit | f79570474118e8e26fa7e6db324434f2980eae8f (patch) | |
tree | 6979d9e9aa500f6170df19e2373d01edccbd6a7b /cloudinit/config/cc_write_files.py | |
parent | eb939e7765f490529aade46e38ee0f85d8a911dd (diff) | |
download | vyos-cloud-init-f79570474118e8e26fa7e6db324434f2980eae8f.tar.gz vyos-cloud-init-f79570474118e8e26fa7e6db324434f2980eae8f.zip |
Fix log message after 'write_files' key change.
Diffstat (limited to 'cloudinit/config/cc_write_files.py')
-rw-r--r-- | cloudinit/config/cc_write_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/config/cc_write_files.py b/cloudinit/config/cc_write_files.py index 9e8f63a5..ed2abe9e 100644 --- a/cloudinit/config/cc_write_files.py +++ b/cloudinit/config/cc_write_files.py @@ -32,7 +32,7 @@ def handle(name, cfg, _cloud, log, _args): files = cfg.get('write_files') if not files: log.debug(("Skipping module named %s," - " no/empty 'files' key in configuration"), name) + " no/empty 'write_files' key in configuration"), name) return write_files(name, files, log) |