diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-01-24 18:39:47 +0000 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-01-24 18:39:47 +0000 |
commit | f1ff91de6193404f544708fa94d7f8508228a98d (patch) | |
tree | 544d1aa1adf0602441207c5378c42165fad7f693 | |
parent | 7e2e87f2de893835900eb5a96458a865f36c624c (diff) | |
download | vyos-cloud-init-f1ff91de6193404f544708fa94d7f8508228a98d.tar.gz vyos-cloud-init-f1ff91de6193404f544708fa94d7f8508228a98d.zip |
cloud-init.py: add trailing carriage return to message
-rwxr-xr-x | cloud-init.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud-init.py b/cloud-init.py index 7c261c26..62ac9965 100755 --- a/cloud-init.py +++ b/cloud-init.py @@ -60,7 +60,7 @@ def main(): try: cloudinit.initfs() except Exception, e: - warn("failed to initfs, likely bad things to come: %s" % str(e)) + warn("failed to initfs, likely bad things to come: %s\n" % str(e)) cloudinit.logging_set_from_cfg_file() |