Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/layman:master commit in: layman/
Date: Wed, 28 Nov 2012 04:14:54
Message-Id: 1354076051.e1583b89f0bef9b9b821ecbd71761c8ddf99143f.dol-sen@gentoo
1 commit: e1583b89f0bef9b9b821ecbd71761c8ddf99143f
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 28 04:14:11 2012 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Wed Nov 28 04:14:11 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=e1583b89
7
8 missed one rename from config to self.config
9
10 ---
11 layman/remotedb.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/layman/remotedb.py b/layman/remotedb.py
15 index f8aea16..cbe35b9 100644
16 --- a/layman/remotedb.py
17 +++ b/layman/remotedb.py
18 @@ -415,7 +415,7 @@ class RemoteDB(DbBase):
19 self.detached_urls.append((u[0], u[1]))
20
21 self.signed_urls = [i.strip()
22 - for i in config['gpg_signed_lists'].split('\n') if len(i)]
23 + for i in self.config['gpg_signed_lists'].split('\n') if len(i)]
24
25
26 if __name__ == '__main__':