diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-19 18:43:18 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-19 18:43:18 -0700 |
commit | b334a1035b645d9e727bdeb03e1fe3729bfc4e1a (patch) | |
tree | b5c46f26aa0ee4d54de295811c37cd4aca29bdf3 /cloudinit/helpers.py | |
parent | 742a554a474475ac70f023e18a6ed29b2b88f906 (diff) | |
download | vyos-cloud-init-b334a1035b645d9e727bdeb03e1fe3729bfc4e1a.tar.gz vyos-cloud-init-b334a1035b645d9e727bdeb03e1fe3729bfc4e1a.zip |
More path joinings found + update in logging of when we translate a path
Diffstat (limited to 'cloudinit/helpers.py')
-rw-r--r-- | cloudinit/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/helpers.py b/cloudinit/helpers.py index 9f55a984..09686340 100644 --- a/cloudinit/helpers.py +++ b/cloudinit/helpers.py @@ -253,7 +253,7 @@ class Paths(object): # will confuse os.path.join joined = joined.lstrip("/") joined = os.path.join(root, joined) - LOG.debug("Translated %s to adjusted path %s (%s)", + LOG.debug("Translated %s to adjusted path %s (read-only=%s)", pre_joined, joined, read_only) return joined |