diff options
author | Joshua Harlow <harlowja@gmail.com> | 2014-02-08 13:16:07 -0800 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2014-02-08 13:16:07 -0800 |
commit | ea05883f88cedd5ed099aed19d4c5df563525097 (patch) | |
tree | b1f445f7dcebc42e3c82c6e5637918e62dcca522 /cloudinit/sources/DataSourceConfigDrive.py | |
parent | 098a74e6207f5d91f515fac63e970375d52795c0 (diff) | |
download | vyos-cloud-init-ea05883f88cedd5ed099aed19d4c5df563525097.tar.gz vyos-cloud-init-ea05883f88cedd5ed099aed19d4c5df563525097.zip |
Capture IOError and use LOG better
Diffstat (limited to 'cloudinit/sources/DataSourceConfigDrive.py')
-rw-r--r-- | cloudinit/sources/DataSourceConfigDrive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceConfigDrive.py b/cloudinit/sources/DataSourceConfigDrive.py index 1d30fe08..142e0eb8 100644 --- a/cloudinit/sources/DataSourceConfigDrive.py +++ b/cloudinit/sources/DataSourceConfigDrive.py @@ -87,7 +87,7 @@ class DataSourceConfigDrive(openstack.SourceMixin, sources.DataSource): md = util.mergemanydict([md, DEFAULT_METADATA]) user_dsmode = results.get('dsmode', None) if user_dsmode not in VALID_DSMODES + (None,): - LOG.warn("User specified invalid mode: %s" % user_dsmode) + LOG.warn("User specified invalid mode: %s", user_dsmode) user_dsmode = None dsmode = get_ds_mode(cfgdrv_ver=results['version'], |