diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-16 09:51:45 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-06-16 09:51:45 -0700 |
commit | 1e6455899af5532314d7244bbc660a0e34a84eff (patch) | |
tree | 1a77f2c1bee73487564df2e1d59da42345783a3e /cloudinit/helpers.py | |
parent | a4454ec81a44142db0c51ceb76b979ace4b1176e (diff) | |
download | vyos-cloud-init-1e6455899af5532314d7244bbc660a0e34a84eff.tar.gz vyos-cloud-init-1e6455899af5532314d7244bbc660a0e34a84eff.zip |
Content handlers does not need the paths variable anymore so removed that.
Diffstat (limited to 'cloudinit/helpers.py')
-rw-r--r-- | cloudinit/helpers.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/helpers.py b/cloudinit/helpers.py index 5e47794b..76faa1d5 100644 --- a/cloudinit/helpers.py +++ b/cloudinit/helpers.py @@ -160,8 +160,7 @@ class Runners(object): class ContentHandlers(object): - def __init__(self, paths): - self.paths = paths + def __init__(self): self.registered = {} def __contains__(self, item): |