From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 20104138334 for ; Sat, 7 Jul 2018 14:06:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 129A6E0CA3; Sat, 7 Jul 2018 14:06:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BBC7DE0CA3 for ; Sat, 7 Jul 2018 14:06:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2479335C76 for ; Sat, 7 Jul 2018 14:06:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6D4435F for ; Sat, 7 Jul 2018 14:05:58 +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: <1530971570.4dddb4672aed28901ad6de1db5e520d73720a898.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys-ldap/gkeyldap/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys-ldap/gkeyldap/config.py X-VCS-Directories: gkeys-ldap/gkeyldap/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 4dddb4672aed28901ad6de1db5e520d73720a898 X-VCS-Branch: master Date: Sat, 7 Jul 2018 14:05:58 +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: 90bd712e-23c4-436a-899a-0f872c6c682b X-Archives-Hash: 1814845d9db3ffb33b1ea973255d1f08 commit: 4dddb4672aed28901ad6de1db5e520d73720a898 Author: Brian Dolbec gentoo org> AuthorDate: Sat Jul 7 13:52:50 2018 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Jul 7 13:52:50 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=4dddb467 gkeyldap config.py: py3 update xrange ==> range Signed-off-by: Brian Dolbec gentoo.org> gkeys-ldap/gkeyldap/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gkeys-ldap/gkeyldap/config.py b/gkeys-ldap/gkeyldap/config.py index fe56e78..a2ef400 100644 --- a/gkeys-ldap/gkeyldap/config.py +++ b/gkeys-ldap/gkeyldap/config.py @@ -2,7 +2,7 @@ #-*- coding:utf-8 -*- # Redundancy -- ldap{1,2,3,4} -default_server = ['ldap://ldap%d.gentoo.org' % i for i in xrange(1,5)] +default_server = ['ldap://ldap%d.gentoo.org' % i for i in range(1,5)] # add uid to the results so you don't have to # separate it out of the results tuple[0] value default_fields = ['uid', 'cn', 'mail', 'gentooStatus', 'gpgfingerprint']