diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-07-12 14:59:12 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-07-12 14:59:12 -0400 |
commit | a2ba3597657ab94499dacd4ba7565056df4b6ccb (patch) | |
tree | b87624bfa8fe8f2e3e86de7d9d892cb22981e2ba | |
parent | f12b49049e30c49f24797df3d0432e966dd6ea74 (diff) | |
download | vyos-cloud-init-a2ba3597657ab94499dacd4ba7565056df4b6ccb.tar.gz vyos-cloud-init-a2ba3597657ab94499dacd4ba7565056df4b6ccb.zip |
fix bad variable. should be 'LOG', not 'log'
-rw-r--r-- | cloudinit/sources/DataSourceOVF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceOVF.py b/cloudinit/sources/DataSourceOVF.py index d3c42f3b..0f38afcc 100644 --- a/cloudinit/sources/DataSourceOVF.py +++ b/cloudinit/sources/DataSourceOVF.py @@ -213,7 +213,7 @@ def transport_iso9660(require_iso=True): (fname, contents) = util.mount_cb(fullp, get_ovf_env, mtype="iso9660") except util.MountFailedError: - log.debug("%s not mountable as iso9660" % fullp) + LOG.debug("%s not mountable as iso9660" % fullp) if contents is not False: return (contents, fullp, fname) |