diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-02-04 16:56:17 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-02-04 16:56:17 -0500 |
commit | 38b21ce3c0972d0659c4a4a9fb22640ff1d3f439 (patch) | |
tree | 742de5207f8158812b55e3eb5ac407ce58bcd04e /cloudinit/DataSourceOVF.py | |
parent | bafe47bc913330b16cb1296ffbfe97596b5c4cfc (diff) | |
download | vyos-cloud-init-38b21ce3c0972d0659c4a4a9fb22640ff1d3f439.tar.gz vyos-cloud-init-38b21ce3c0972d0659c4a4a9fb22640ff1d3f439.zip |
fix logging in DataSource modules
Previous logging was getting 'None' set in the DataSource collections.
Thus, 'log.debug' would throw error. I think it is proper to pull in
the base cloudinit's log.
Diffstat (limited to 'cloudinit/DataSourceOVF.py')
-rw-r--r-- | cloudinit/DataSourceOVF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/DataSourceOVF.py b/cloudinit/DataSourceOVF.py index a0c53c69..6f0bd523 100644 --- a/cloudinit/DataSourceOVF.py +++ b/cloudinit/DataSourceOVF.py @@ -18,7 +18,7 @@ import DataSource -from cloudinit import seeddir +from cloudinit import seeddir, log import cloudinit.util as util import sys import os.path |