commit:     3da6a4ff0110c91c88cdbee9ec25f3526176941f
Author:     Tom Wijsman <tomwij <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  2 16:23:20 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Mon Nov 17 00:53:12 2014 +0000
URL:        
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=3da6a4ff

repoman/vcs/vcsstatus.py: Only check VCS status in a VCS

---
 pym/repoman/vcs/vcsstatus.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/repoman/vcs/vcsstatus.py b/pym/repoman/vcs/vcsstatus.py
index eedf866..f984832 100644
--- a/pym/repoman/vcs/vcsstatus.py
+++ b/pym/repoman/vcs/vcsstatus.py
@@ -22,7 +22,7 @@ class VCSStatus(object):
 
 
        def check(self, check_not_added):
-               if check_not_added:
+               if self.vcs and check_not_added:
                        vcscheck = getattr(self, 'check_%s' % self.vcs)
                        vcscheck()
 

Reply via email to