diff options
author | harlowja <harlowja@virtualbox.rhel> | 2012-06-20 00:36:43 -0700 |
---|---|---|
committer | harlowja <harlowja@virtualbox.rhel> | 2012-06-20 00:36:43 -0700 |
commit | 5859fd60454016e5e7b50a9d9d665e5aeb2da3b1 (patch) | |
tree | be937d37e35705c9eb9415de5c5605c17eabb3be | |
parent | baa139e0112f0afe27238ed681b44faef0c7132f (diff) | |
download | vyos-cloud-init-5859fd60454016e5e7b50a9d9d665e5aeb2da3b1.tar.gz vyos-cloud-init-5859fd60454016e5e7b50a9d9d665e5aeb2da3b1.zip |
Change this function name back after made it back to protected after making the run single transform mode work
-rw-r--r-- | cloudinit/stages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/stages.py b/cloudinit/stages.py index 0c3d5915..f39b6532 100644 --- a/cloudinit/stages.py +++ b/cloudinit/stages.py @@ -543,6 +543,6 @@ class Transforms(object): return self._run_transforms(mostly_mods) def run_section(self, section_name): - raw_mods = self.read_transforms(section_name) + raw_mods = self._read_transforms(section_name) mostly_mods = self._fixup_transforms(raw_mods) return self._run_transforms(mostly_mods) |