diff options
author | harlowja <harlowja@virtualbox.rhel> | 2012-06-21 09:12:16 -0700 |
---|---|---|
committer | harlowja <harlowja@virtualbox.rhel> | 2012-06-21 09:12:16 -0700 |
commit | 0c83ff5cb81b6de3028cf90e7dd6aba565682dbf (patch) | |
tree | a499408fa70a248b32f0e82e36b9ae893dce46e9 /cloudinit/cloud.py | |
parent | 64f1347cb8f2580339d539b7772e7872ed81cae9 (diff) | |
download | vyos-cloud-init-0c83ff5cb81b6de3028cf90e7dd6aba565682dbf.tar.gz vyos-cloud-init-0c83ff5cb81b6de3028cf90e7dd6aba565682dbf.zip |
1. Renames for debug message from 'transform' to 'module'
2. Fixing up more cloud.path.joins found to use the right ro/rw filename
Diffstat (limited to 'cloudinit/cloud.py')
-rw-r--r-- | cloudinit/cloud.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/cloud.py b/cloudinit/cloud.py index 6cdcb76a..22d9167e 100644 --- a/cloudinit/cloud.py +++ b/cloudinit/cloud.py @@ -29,7 +29,7 @@ LOG = logging.getLogger(__name__) # This class is the high level wrapper that provides # access to cloud-init objects without exposing the stage objects -# to handler and or transform manipulation. It allows for cloud +# to handler and or module manipulation. It allows for cloud # init to restrict what those types of user facing code may see # and or adjust (which helps avoid code messing with each other) # @@ -47,7 +47,7 @@ class Cloud(object): self._cfg = cfg self._runners = runners - # If a transform manipulates logging or logging services + # If a 'user' manipulates logging or logging services # it is typically useful to cause the logging to be # setup again. def cycle_logging(self): |