diff options
Diffstat (limited to 'scripts/lib/wic/plugin.py')
-rw-r--r-- | scripts/lib/wic/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugin.py b/scripts/lib/wic/plugin.py index 80c609cf8c..933647d7c7 100644 --- a/scripts/lib/wic/plugin.py +++ b/scripts/lib/wic/plugin.py | |||
@@ -137,7 +137,7 @@ class PluginMgr(object): | |||
137 | return_methods = None | 137 | return_methods = None |
138 | for _source_name, klass in self.get_plugins('source').items(): | 138 | for _source_name, klass in self.get_plugins('source').items(): |
139 | if _source_name == source_name: | 139 | if _source_name == source_name: |
140 | for _method_name in methods.keys(): | 140 | for _method_name in methods: |
141 | if not hasattr(klass, _method_name): | 141 | if not hasattr(klass, _method_name): |
142 | msger.warning("Unimplemented %s source interface for: %s"\ | 142 | msger.warning("Unimplemented %s source interface for: %s"\ |
143 | % (_method_name, _source_name)) | 143 | % (_method_name, _source_name)) |