diff options
Diffstat (limited to 'cloudinit/sources/DataSourceOVF.py')
| -rw-r--r-- | cloudinit/sources/DataSourceOVF.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceOVF.py b/cloudinit/sources/DataSourceOVF.py index e90150c6..ae139074 100644 --- a/cloudinit/sources/DataSourceOVF.py +++ b/cloudinit/sources/DataSourceOVF.py @@ -43,7 +43,8 @@ class DataSourceOVF(sources.DataSource):          self.supported_seed_starts = ("/", "file://")      def __str__(self): -        return "%s [seed=%s]" % (util.obj_name(self), self.seed) +        root = sources.DataSource.__str__(self) +        return "%s [seed=%s]" % (root, self.seed)      def get_data(self):          found = []  | 
