diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-11 18:01:59 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-11 18:01:59 -0700 |
commit | 00399cd672e14b7e6953954eaf126f0ccfe35ecd (patch) | |
tree | d2997f4934b7c5b50712f2bebea3694c2bf9f4aa /cloudinit/helpers.py | |
parent | 2a17d8fa939a3b85b5592b81d9b0bd146197578a (diff) | |
download | vyos-cloud-init-00399cd672e14b7e6953954eaf126f0ccfe35ecd.tar.gz vyos-cloud-init-00399cd672e14b7e6953954eaf126f0ccfe35ecd.zip |
Fix log statement.
Diffstat (limited to 'cloudinit/helpers.py')
-rw-r--r-- | cloudinit/helpers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/helpers.py b/cloudinit/helpers.py index 0bd13c78..16548001 100644 --- a/cloudinit/helpers.py +++ b/cloudinit/helpers.py @@ -260,8 +260,8 @@ class Paths(object): def get_ipath(self, name=None): ipath = self._get_ipath(name) if not ipath: - LOG.warn(("No per instance semaphores available, " - "is there an datasource/iid set?")) + LOG.warn(("No per instance data available, " + "is there an datasource/iid set?")) return None else: return ipath |