diff options
author | Alexander Bokovoy <abokovoy@redhat.com> | 2011-09-13 00:13:10 +0300 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-09-13 11:16:10 +0200 |
commit | 50a836b44cbeb4b6e31d71522cd7240da1cd7b6f (patch) | |
tree | a68f253cae51c243800e0dfd67b61c8750f87271 /ipalib | |
parent | bbbb550aaa13eb2ebdb113ff8738ed5c8f5277aa (diff) | |
download | freeipa-50a836b44cbeb4b6e31d71522cd7240da1cd7b6f.tar.gz freeipa-50a836b44cbeb4b6e31d71522cd7240da1cd7b6f.tar.xz freeipa-50a836b44cbeb4b6e31d71522cd7240da1cd7b6f.zip |
Cleanup whitespace
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/plugable.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py index 56546bba0..b0e415656 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -625,7 +625,7 @@ class API(DictProxy): namespace = NameSpace( plugin_iter(base, (magic[k] for k in magic)) ) - if not production_mode: + if not production_mode: assert not ( name in self.__d or hasattr(self, name) ) @@ -634,12 +634,12 @@ class API(DictProxy): for p in plugins.itervalues(): p.instance.set_api(self) - if not production_mode: + if not production_mode: assert p.instance.api is self for p in plugins.itervalues(): p.instance.finalize() - if not production_mode: + if not production_mode: assert islocked(p.instance) is True object.__setattr__(self, '_API__finalized', True) tuple(PluginInfo(p) for p in plugins.itervalues()) |