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 748D01381F3 for ; Wed, 28 Nov 2012 04:14:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E30D21C001; Wed, 28 Nov 2012 04:14:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D3D2821C001 for ; Wed, 28 Nov 2012 04:14:43 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C694C33D9BC for ; Wed, 28 Nov 2012 04:14:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3F9D5E5436 for ; Wed, 28 Nov 2012 04:14:41 +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: <1354076051.e1583b89f0bef9b9b821ecbd71761c8ddf99143f.dol-sen@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/remotedb.py X-VCS-Directories: layman/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: e1583b89f0bef9b9b821ecbd71761c8ddf99143f X-VCS-Branch: master Date: Wed, 28 Nov 2012 04:14: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: e1e6060c-70c2-4fda-9128-fce7c42dfcc0 X-Archives-Hash: 3c97956be47f19cda85e5430edf2db78 commit: e1583b89f0bef9b9b821ecbd71761c8ddf99143f Author: Brian Dolbec gentoo org> AuthorDate: Wed Nov 28 04:14:11 2012 +0000 Commit: Brian Dolbec gmail com> CommitDate: Wed Nov 28 04:14:11 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=e1583b89 missed one rename from config to self.config --- layman/remotedb.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/layman/remotedb.py b/layman/remotedb.py index f8aea16..cbe35b9 100644 --- a/layman/remotedb.py +++ b/layman/remotedb.py @@ -415,7 +415,7 @@ class RemoteDB(DbBase): self.detached_urls.append((u[0], u[1])) self.signed_urls = [i.strip() - for i in config['gpg_signed_lists'].split('\n') if len(i)] + for i in self.config['gpg_signed_lists'].split('\n') if len(i)] if __name__ == '__main__':