diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-07-16 16:16:27 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-07-16 16:16:27 -0400 |
commit | 1bac4c2eef943157d190a06f775321675784a7ea (patch) | |
tree | e7fc9e9d3ccbf66c3df00f214826390c562ef2b9 /cloudinit/sources | |
parent | 8069296b86da0fdbe2e9f4b804169ed3c238b9ba (diff) | |
download | vyos-cloud-init-1bac4c2eef943157d190a06f775321675784a7ea.tar.gz vyos-cloud-init-1bac4c2eef943157d190a06f775321675784a7ea.zip |
DataSourceEc2: fix bad usage of log that caused trace
Diffstat (limited to 'cloudinit/sources')
-rw-r--r-- | cloudinit/sources/DataSourceEc2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceEc2.py b/cloudinit/sources/DataSourceEc2.py index cde73de3..d9eb8f17 100644 --- a/cloudinit/sources/DataSourceEc2.py +++ b/cloudinit/sources/DataSourceEc2.py @@ -230,7 +230,7 @@ class DataSourceEc2(sources.DataSource): remapped = self._remap_device(os.path.basename(found)) if remapped: - LOG.debug("Remapped device name %s => %s", (found, remapped)) + LOG.debug("Remapped device name %s => %s", found, remapped) return remapped # On t1.micro, ephemeral0 will appear in block-device-mapping from |