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 BCEE7139086 for ; Sat, 24 Dec 2016 09:13:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24E1322419E; Sat, 24 Dec 2016 09:13:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 032EF22419E for ; Sat, 24 Dec 2016 09:13:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 409F7341236 for ; Sat, 24 Dec 2016 09:13:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA31824E9 for ; Sat, 24 Dec 2016 09:13:15 +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: <1482522905.a7919fc85ade88af4eae136c7f7e662225e4bcb8.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:gsoc-2016 commit in: gkeys-ldap/gkeyldap/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys-ldap/gkeyldap/cli.py X-VCS-Directories: gkeys-ldap/gkeyldap/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: a7919fc85ade88af4eae136c7f7e662225e4bcb8 X-VCS-Branch: gsoc-2016 Date: Sat, 24 Dec 2016 09:13:15 +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: 93281d5e-560b-495d-8ebe-246aec473b0f X-Archives-Hash: df2a177db81b8e12e296fc5c20ea8afc Message-ID: <20161224091315.VwSRp7yPMcUN4h6aHDI0SMZY5m3dO4Ly7YmYsuP5D5E@z> commit: a7919fc85ade88af4eae136c7f7e662225e4bcb8 Author: Brian Dolbec gentoo org> AuthorDate: Fri Dec 23 19:55:05 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Dec 23 19:55:05 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=a7919fc8 gkeys-ldap: Add missed CliBase.__init__() call gkeys-ldap/gkeyldap/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gkeys-ldap/gkeyldap/cli.py b/gkeys-ldap/gkeyldap/cli.py index 4d38485..4f17725 100644 --- a/gkeys-ldap/gkeyldap/cli.py +++ b/gkeys-ldap/gkeyldap/cli.py @@ -25,6 +25,7 @@ class Main(CliBase): @param config: optional GKeysConfig instance, For API use @param print_results: optional boolean, for API use """ + CliBase.__init__(self) self.root = root or "/" self.config = config or GKeysConfig(root=root) self.config.options['print_results'] = print_results