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 97658138A2F for ; Sat, 16 Aug 2014 00:00:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B476E0AFA; Sat, 16 Aug 2014 00:00:44 +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 1502AE0AFA for ; Sat, 16 Aug 2014 00:00:44 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2952C34011B for ; Sat, 16 Aug 2014 00:00:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id DDB2518816 for ; Sat, 16 Aug 2014 00:00:41 +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:gsoc2014 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: gsoc2014 Date: Sat, 16 Aug 2014 00:00:41 +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: 211fb8f8-0c6b-42ba-b64c-921f22e066ef X-Archives-Hash: c872f4897052181543c82bd9e279e028 Message-ID: <20140816000041.ogiJ7ogCpldAgMt5m5HRgCZVI9OSCYgAcNdZUSB7oY4@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://git.overlays.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 = {}