From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4DA3E138A1A for ; Thu, 13 Nov 2014 18:08:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54C70E0CC6; Thu, 13 Nov 2014 18:08:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C836EE0CBB for ; Thu, 13 Nov 2014 18:08:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0DEF340493 for ; Thu, 13 Nov 2014 18:08:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BB0BA116 for ; Thu, 13 Nov 2014 18:08:08 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1415902033.d6053350176e659f9793f75e674c5e32773a8b7d.dol-sen@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/maker.py X-VCS-Directories: layman/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: d6053350176e659f9793f75e674c5e32773a8b7d X-VCS-Branch: master Date: Thu, 13 Nov 2014 18:08:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 19f96df9-d11d-43e7-b938-e23eb3198cb1 X-Archives-Hash: 4ef824761cfc666fc9e47856ad88d6d1 commit: d6053350176e659f9793f75e674c5e32773a8b7d Author: Brian Dolbec gentoo org> AuthorDate: Thu Nov 13 18:00:00 2014 +0000 Commit: Brian Dolbec gmail 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):