summaryrefslogtreecommitdiff
path: root/cloudinit/sources/DataSourceCloudSigma.py
diff options
context:
space:
mode:
authorDaniel Watkins <daniel.watkins@canonical.com>2015-03-04 17:20:22 +0000
committerDaniel Watkins <daniel.watkins@canonical.com>2015-03-04 17:20:22 +0000
commit014468ea3fb36e81a3e5a6fc593ce91571c1495f (patch)
tree4e6b35e8d88e1818f3eabe7934753b2d8c5adec3 /cloudinit/sources/DataSourceCloudSigma.py
parentc808b84f1f6cdfe090a18b759a602eb504f36026 (diff)
downloadvyos-cloud-init-014468ea3fb36e81a3e5a6fc593ce91571c1495f.tar.gz
vyos-cloud-init-014468ea3fb36e81a3e5a6fc593ce91571c1495f.zip
Fix invalid format string in CloudSigma logging.
Diffstat (limited to 'cloudinit/sources/DataSourceCloudSigma.py')
-rw-r--r--cloudinit/sources/DataSourceCloudSigma.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceCloudSigma.py b/cloudinit/sources/DataSourceCloudSigma.py
index 76597116..f8f94759 100644
--- a/cloudinit/sources/DataSourceCloudSigma.py
+++ b/cloudinit/sources/DataSourceCloudSigma.py
@@ -59,7 +59,7 @@ class DataSourceCloudSigma(sources.DataSource):
LOG.warn("failed to get hypervisor product name via dmi data")
return False
else:
- LOG.debug("detected hypervisor as {}".format(sys_product_name))
+ LOG.debug("detected hypervisor as %s", sys_product_name)
return 'cloudsigma' in sys_product_name.lower()
LOG.warn("failed to query dmi data for system product name")