diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-09-01 20:00:34 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-09-01 20:00:34 -0400 |
commit | 3a35daa68ca7e6214be3f9c1e33a1cdde5f60eb4 (patch) | |
tree | 6ffb19dd525035cba407bdd8354a6832b78718e2 /cloudinit/filters | |
parent | 47a643296f6656bfda1ea13b5bc98dd4b60d7852 (diff) | |
parent | a7bd5c448a6eda8b3d841f2dd5c73ed3956fe3c3 (diff) | |
download | vyos-cloud-init-3a35daa68ca7e6214be3f9c1e33a1cdde5f60eb4.tar.gz vyos-cloud-init-3a35daa68ca7e6214be3f9c1e33a1cdde5f60eb4.zip |
improvements for launch index, one fix for cloud-archive
1. Docs for launch-index + examples
2. Tests for launch-index + data files
3. Fixing a bug with cloud-archive yaml types allowed (likes a tuple not a list
for some reason) (LP: #1044594)
4. Setting the 'part' content-type if what we actually use is different.
LP: #1044594
Diffstat (limited to 'cloudinit/filters')
-rw-r--r-- | cloudinit/filters/launch_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/filters/launch_index.py b/cloudinit/filters/launch_index.py index 4299fb46..5bebd318 100644 --- a/cloudinit/filters/launch_index.py +++ b/cloudinit/filters/launch_index.py @@ -44,7 +44,7 @@ class Filter(object): return True def _do_filter(self, message): - # Don't use walk() here since we want to do the reforming of the + # Don't use walk() here since we want to do the reforming of the # messages ourselves and not flatten the message listings... if not self._select(message): return None |