diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-02-19 02:08:53 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-02-19 02:08:53 -0500 |
commit | 0b16a3892e7e9c7e7126878a4a36cf1961d001ce (patch) | |
tree | 265a972451bf81565c42fd24d08bbf1f5a50a1de /cloudinit | |
parent | d24e24686e0aa40adbd2f31f29a61f02db838b00 (diff) | |
download | vyos-cloud-init-0b16a3892e7e9c7e7126878a4a36cf1961d001ce.tar.gz vyos-cloud-init-0b16a3892e7e9c7e7126878a4a36cf1961d001ce.zip |
typo in warning
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/CloudConfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/CloudConfig.py b/cloudinit/CloudConfig.py index e15dbb2c..532abede 100644 --- a/cloudinit/CloudConfig.py +++ b/cloudinit/CloudConfig.py @@ -516,4 +516,4 @@ def handle_runcmd(cfg): util.write_file(outfile,content,0700) except: - warn("failed to open %s for runcmd", outfile) + warn("failed to open %s for runcmd" % outfile) |