diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-07-01 20:51:22 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-07-01 20:51:22 -0400 |
commit | 5b03431c163ebd3e0df26a304ad9386817fcb35c (patch) | |
tree | a05b396da54d630a7575211d853fa62028ec62ef /cloudinit/DataSourceEc2.py | |
parent | f5b9a7353bac21640d7d2b2868c8027ee9b5a34e (diff) | |
download | vyos-cloud-init-5b03431c163ebd3e0df26a304ad9386817fcb35c.tar.gz vyos-cloud-init-5b03431c163ebd3e0df26a304ad9386817fcb35c.zip |
fix invalid log string when reading from preseeded ec2 cache
Diffstat (limited to 'cloudinit/DataSourceEc2.py')
-rw-r--r-- | cloudinit/DataSourceEc2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/DataSourceEc2.py b/cloudinit/DataSourceEc2.py index 6e60b67a..e468bf50 100644 --- a/cloudinit/DataSourceEc2.py +++ b/cloudinit/DataSourceEc2.py @@ -49,7 +49,7 @@ class DataSourceEc2(DataSource.DataSource): self.metadata = eval(data) mdf.close() - cloudinit.log.debug("using seeded ec2 cache data" % self.cachedir) + cloudinit.log.debug("using seeded ec2 cache data in %s" % self.cachedir) return True except: pass |