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 A65461389E2 for ; Mon, 22 Dec 2014 23:11:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60FCFE098A; Mon, 22 Dec 2014 23:11:47 +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 C5B4FE0986 for ; Mon, 22 Dec 2014 23:11:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F9AE340614 for ; Mon, 22 Dec 2014 23:11:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3ABD7D287 for ; Mon, 22 Dec 2014 23:11:40 +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: <1419289089.30d9ea3f78767f5c788478bfd70f33ff9139041f.dol-sen@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/cli.py X-VCS-Directories: gkeys-ldap/gkeyldap/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 30d9ea3f78767f5c788478bfd70f33ff9139041f X-VCS-Branch: master Date: Mon, 22 Dec 2014 23:11:40 +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: dcac83d0-0a07-4684-9576-1942edcb90a5 X-Archives-Hash: e8e176bef2d9d5193ca7294544b5c2d5 commit: 30d9ea3f78767f5c788478bfd70f33ff9139041f Author: Brian Dolbec gentoo org> AuthorDate: Sun Dec 21 00:27:12 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Mon Dec 22 22:58:09 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=30d9ea3f gkeyldap/cli.py: Fix missed import of Action_Options --- gkeys-ldap/gkeyldap/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gkeys-ldap/gkeyldap/cli.py b/gkeys-ldap/gkeyldap/cli.py index 15f4dbd..5a1e141 100644 --- a/gkeys-ldap/gkeyldap/cli.py +++ b/gkeys-ldap/gkeyldap/cli.py @@ -12,7 +12,7 @@ from gkeys import seed from gkeys.base import CliBase from gkeys.config import GKeysConfig from gkeyldap import connect, search -from gkeyldap.actions import Actions, Available_Actions +from gkeyldap.actions import Actions, Available_Actions, Action_Options class Main(CliBase):