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 C10E91393DD for ; Tue, 19 Aug 2014 02:06:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5232DE09DE; Tue, 19 Aug 2014 02:06:51 +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 02283E09DE for ; Tue, 19 Aug 2014 02:06:50 +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 5898A3400A4 for ; Tue, 19 Aug 2014 02:06:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71AD83B8C for ; Tue, 19 Aug 2014 01:49:05 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1408147186.586a89a52c6ff564016780718fc07518dcea05fc.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/api.py X-VCS-Directories: layman/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 586a89a52c6ff564016780718fc07518dcea05fc X-VCS-Branch: master Date: Tue, 19 Aug 2014 01:49:05 +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: 8d20af1f-a8c9-4786-b6f4-dea02d45f793 X-Archives-Hash: cfab1634e5999da6e2d755e7fa4df175 Message-ID: <20140819014905.EoXbe8r5LCo3HAXc1AKs2KoYXlrQkx9oNygFBZZN-1Q@z> commit: 586a89a52c6ff564016780718fc07518dcea05fc Author: Devan Franchini gentoo org> AuthorDate: Fri Aug 15 23:59:46 2014 +0000 Commit: Devan Franchini gentoo org> CommitDate: Fri Aug 15 23:59:46 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=586a89a5 api.py: Modifies supported_types() module checking --- layman/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layman/api.py b/layman/api.py index b3f33f6..bb63d8d 100755 --- a/layman/api.py +++ b/layman/api.py @@ -626,7 +626,7 @@ class LaymanAPI(object): with boolean values""" here = os.path.dirname(os.path.realpath(__file__)) modpath = os.path.join('overlays', 'modules') - modules = os.path.listdir(os.path.join(here, modpath)) + modules = os.listdir(os.path.join(here, modpath)) cmds = [x for x in self.config.keys() if '_command' in x] supported = {}