From patchwork Wed Jun 4 21:01:54 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Weston Andros Adamson X-Patchwork-Id: 4296871 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 85A0A9F1D6 for ; Wed, 4 Jun 2014 21:02:47 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B2E7E20218 for ; Wed, 4 Jun 2014 21:02:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 74C0E2012E for ; Wed, 4 Jun 2014 21:02:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752044AbaFDVC2 (ORCPT ); Wed, 4 Jun 2014 17:02:28 -0400 Received: from mail-ie0-f175.google.com ([209.85.223.175]:60404 "EHLO mail-ie0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752045AbaFDVCW (ORCPT ); Wed, 4 Jun 2014 17:02:22 -0400 Received: by mail-ie0-f175.google.com with SMTP id y20so68439ier.6 for ; Wed, 04 Jun 2014 14:02:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=tjfiAiGLXCsnhSPTJ9Tl9SMq6bKrAg78c9dKxwY3Xmo=; b=NkYTh4GNoB08cZad7/QjjSDj4L6kfgUBf0+dyq8SeIVP8FFcwPu/A/Vt5mWowpiQ5k wzunp+SPFdvuq7VrJgcIf90AR/+OLqvfTH55An4f066deGjQ48TvXBGHiR1uhcspfd5D 4rnlaa5XnlW6CnbFgGRh8cpBYlqF1omiWrG3LkgYrcwfiMMDYpszF+QY5FkOIj3aTXxW 86omSKQ6ZaXI0A/s5Snspbn9txO1ZrNs2M9E2GUExr5hmiXpXIqckUFF0xm5S8m3Xim7 2o7EWCJf95VGnLBSXuMn7W2+0NN6YT5Aea4WV2ELqryhMUEHbULYlKRryKVGkzpgslsW Qsuw== X-Gm-Message-State: ALoCoQmljFbee1kRt+B8VjWEqzcxvMEXW+13UcjhmK1Hq3HW2IQD6jBLMqIKaDEyS+QmMIMxo0Ha X-Received: by 10.50.122.39 with SMTP id lp7mr11499105igb.28.1401915741455; Wed, 04 Jun 2014 14:02:21 -0700 (PDT) Received: from gavrio-wifi.robotsandstuff.fake (c-98-209-19-144.hsd1.mi.comcast.net. [98.209.19.144]) by mx.google.com with ESMTPSA id qh3sm47684584igb.17.2014.06.04.14.02.20 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 04 Jun 2014 14:02:20 -0700 (PDT) From: Weston Andros Adamson To: bfields@fieldses.org Cc: linux-nfs@vger.kernel.org, Weston Andros Adamson Subject: [PATCH pynfs 06/17] 4.1 client: remove unused imports Date: Wed, 4 Jun 2014 17:01:54 -0400 Message-Id: <1401915726-29092-7-git-send-email-dros@primarydata.com> X-Mailer: git-send-email 1.8.5.2 (Apple Git-48) In-Reply-To: <1401915726-29092-1-git-send-email-dros@primarydata.com> References: <1401915726-29092-1-git-send-email-dros@primarydata.com> Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Weston Andros Adamson --- nfs4.1/nfs4client.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nfs4.1/nfs4client.py b/nfs4.1/nfs4client.py index 91c698d..0904577 100644 --- a/nfs4.1/nfs4client.py +++ b/nfs4.1/nfs4client.py @@ -8,15 +8,13 @@ from xdrdef.sctrl_pack import SCTRLPacker, SCTRLUnpacker import nfs4_ops as op import time, struct import threading -import collections import hmac -from locking import Lock from nfs4commoncode import CBCompoundState as CompoundState, \ cb_encode_status as encode_status, \ cb_encode_status_by_name as encode_status_by_name -import sys, traceback +import traceback import logging logging.basicConfig(level=logging.INFO, format="%(levelname)-7s:%(name)s:%(message)s")