summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2012-07-12 14:59:12 -0400
committerScott Moser <smoser@ubuntu.com>2012-07-12 14:59:12 -0400
commita2ba3597657ab94499dacd4ba7565056df4b6ccb (patch)
treeb87624bfa8fe8f2e3e86de7d9d892cb22981e2ba /cloudinit
parentf12b49049e30c49f24797df3d0432e966dd6ea74 (diff)
downloadvyos-cloud-init-a2ba3597657ab94499dacd4ba7565056df4b6ccb.tar.gz
vyos-cloud-init-a2ba3597657ab94499dacd4ba7565056df4b6ccb.zip
fix bad variable. should be 'LOG', not 'log'
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/sources/DataSourceOVF.py2
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)