diff options
author | Daniel Watkins <daniel.watkins@canonical.com> | 2015-03-04 17:20:22 +0000 |
---|---|---|
committer | Daniel Watkins <daniel.watkins@canonical.com> | 2015-03-04 17:20:22 +0000 |
commit | 014468ea3fb36e81a3e5a6fc593ce91571c1495f (patch) | |
tree | 4e6b35e8d88e1818f3eabe7934753b2d8c5adec3 /cloudinit/sources/DataSourceCloudSigma.py | |
parent | c808b84f1f6cdfe090a18b759a602eb504f36026 (diff) | |
download | vyos-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.py | 2 |
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") |