diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-07-27 15:02:24 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-07-27 15:02:24 -0400 |
commit | 81d7b9f56b038b7e49aaef5efbc6c7ec6e11875d (patch) | |
tree | d26090bfcb5776aaa8c86c7f1aadad61dee455ec /cloud-init-run-module.py | |
parent | 0f9d5a7da40b8200819967c59b0d996ac522085a (diff) | |
download | vyos-cloud-init-81d7b9f56b038b7e49aaef5efbc6c7ec6e11875d.tar.gz vyos-cloud-init-81d7b9f56b038b7e49aaef5efbc6c7ec6e11875d.zip |
fix bad format error in cloud-init-run-module.py
Diffstat (limited to 'cloud-init-run-module.py')
-rwxr-xr-x | cloud-init-run-module.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud-init-run-module.py b/cloud-init-run-module.py index 3e62f007..1bb99698 100755 --- a/cloud-init-run-module.py +++ b/cloud-init-run-module.py @@ -45,7 +45,7 @@ def main(): if cloud.sem_has_run(semname,freq): msg="%s already ran %s" % (semname,freq) - sys.stderr.write("%\n" % msg) + sys.stderr.write("%s\n" % msg) log.debug(msg) sys.exit(0) |