diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-19 18:34:09 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-19 18:34:09 -0700 |
commit | 742a554a474475ac70f023e18a6ed29b2b88f906 (patch) | |
tree | e08aad049f060206dc2fb9a06920a63ba49418d2 /cloudinit | |
parent | 39e3649f0cd863ffcb82b1ea83c147272b1784a2 (diff) | |
download | vyos-cloud-init-742a554a474475ac70f023e18a6ed29b2b88f906.tar.gz vyos-cloud-init-742a554a474475ac70f023e18a6ed29b2b88f906.zip |
Fix logging message spelling
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/transforms/bootcmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/transforms/bootcmd.py b/cloudinit/transforms/bootcmd.py index 0c45a307..635e3a1f 100644 --- a/cloudinit/transforms/bootcmd.py +++ b/cloudinit/transforms/bootcmd.py @@ -31,7 +31,7 @@ def handle(name, cfg, cloud, log, _args): if "bootcmd" not in cfg: log.debug(("Skipping transform named %s," - " no 'bootcomd' key in configuration"), name) + " no 'bootcmd' key in configuration"), name) return with tempfile.NamedTemporaryFile(suffix=".sh") as tmpf: |