From 50a836b44cbeb4b6e31d71522cd7240da1cd7b6f Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Tue, 13 Sep 2011 00:13:10 +0300 Subject: Cleanup whitespace --- ipalib/plugable.py | 6 +++--- 1 file 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()) -- cgit