commit:     d6053350176e659f9793f75e674c5e32773a8b7d
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 13 18:00:00 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Thu Nov 13 18:07:13 2014 +0000
URL:        
http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=d6053350

maker.py: Fix use of .keys() causing py3 compatibility issues

Reported by: Scott Fury:
X-Funtoo-Bug: FL-1759
X-Funtoo-Bug-URL: https://bugs.funtoo.org/browse/FL-1759

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

diff --git a/layman/maker.py b/layman/maker.py
index 54e15ae..fbbe4fd 100644
--- a/layman/maker.py
+++ b/layman/maker.py
@@ -116,7 +116,7 @@ class Interactive(object):
         self.overlay = {}
         self.overlays = []
         self.overlays_available = self.layman_inst.get_available()
-        self.supported_types = self.layman_inst.supported_types().keys()
+        self.supported_types = list(self.layman_inst.supported_types())
 
 
     def args_parser(self):

Reply via email to