commit:     2f92c6d798f8f6133ed48fe4d0d62baff36dcb97
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 16 22:31:35 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Mon Jun 16 22:31:35 2014 +0000
URL:        
http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2f92c6d7

portage/emaint/module.py: Fix an indent error in get_class()

Multiple calls to get_class for the same module triggered this bug.
Thanks for triggerring it twitch153.

---
 pym/portage/emaint/module.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/portage/emaint/module.py b/pym/portage/emaint/module.py
index bf7d25f..07a0cb7 100644
--- a/pym/portage/emaint/module.py
+++ b/pym/portage/emaint/module.py
@@ -66,7 +66,7 @@ class Module(object):
                                kid['is_imported'] = True
                        except ImportError:
                                raise
-                       mod_class = getattr(module, kid['class'])
+               mod_class = getattr(module, kid['class'])
                return mod_class
 
 

Reply via email to