← Back to team overview

cloud-init-dev team mailing list archive

[Merge] ~b-candler/cloud-init:avalid-seed into cloud-init:master

 

Brian Candler has proposed merging ~b-candler/cloud-init:avalid-seed into cloud-init:master.

Commit message:
Add missing space in warning: "not avalid seed"

Requested reviews:
  cloud-init Commiters (cloud-init-dev)

For more details, see:
https://code.launchpad.net/~b-candler/cloud-init/+git/cloud-init/+merge/373132

Trivial change to fix missing space in warning message
-- 
Your team cloud-init Commiters is requested to review the proposed merge of ~b-candler/cloud-init:avalid-seed into cloud-init:master.
diff --git a/cloudinit/sources/DataSourceNoCloud.py b/cloudinit/sources/DataSourceNoCloud.py
index 8a9e5dd..474773d 100644
--- a/cloudinit/sources/DataSourceNoCloud.py
+++ b/cloudinit/sources/DataSourceNoCloud.py
@@ -127,7 +127,7 @@ class DataSourceNoCloud(sources.DataSource):
                         seeded = util.mount_cb(dev, _pp2d_callback,
                                                pp2d_kwargs)
                     except ValueError:
-                        LOG.warning("device %s with label=%s not a"
+                        LOG.warning("device %s with label=%s not a "
                                     "valid seed.", dev, label)
                         continue