commit:     0ee15b6d6b6fcbd5a83e346098d4aaab5a898bf4
Author:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 15 23:26:43 2014 +0000
Commit:     Devan Franchini <twitch153 <AT> gentoo <DOT> org>
CommitDate: Fri Aug 15 23:26:43 2014 +0000
URL:        
http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=0ee15b6d

cli.py: Modifies print_shortlist info unpacking

---
 layman/cli.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layman/cli.py b/layman/cli.py
index bb84081..47824b8 100644
--- a/layman/cli.py
+++ b/layman/cli.py
@@ -63,7 +63,7 @@ class ListPrinter(object):
             self.print_overlay(summary, supported, official, complain)
 
     def print_shortlist(self, info, complain):
-        for summary, official, supported in info:
+        for summary, supported, official in info:
             self.print_overlay(summary, supported, official, complain)
 
 

Reply via email to