From patchwork Thu Oct 4 10:29:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jiri Zupka X-Patchwork-Id: 1545951 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 950D0DF24C for ; Thu, 4 Oct 2012 10:29:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753530Ab2JDK3j (ORCPT ); Thu, 4 Oct 2012 06:29:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:5852 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753063Ab2JDK3h (ORCPT ); Thu, 4 Oct 2012 06:29:37 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q94ATGD0014776 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 4 Oct 2012 06:29:16 -0400 Received: from jzupka-pc.local.com (vpn1-5-104.ams2.redhat.com [10.36.5.104]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q94ATAqh030456; Thu, 4 Oct 2012 06:29:14 -0400 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=BDupka?= To: autotest@test.kernel.org, kvm@vger.kernel.org, kvm-autotest@redhat.com, lmr@redhat.com, ldoktor@redhat.com, jzupka@redhat.com Subject: [virt][PATCH 2/4] virt: Cleanup unused import in libvirt_xml.py Date: Thu, 4 Oct 2012 12:29:06 +0200 Message-Id: <1349346548-25288-3-git-send-email-jzupka@redhat.com> In-Reply-To: <1349346548-25288-1-git-send-email-jzupka@redhat.com> References: <1349346548-25288-1-git-send-email-jzupka@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Ji?í Župka --- virttest/libvirt_xml.py | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/virttest/libvirt_xml.py b/virttest/libvirt_xml.py index bedc496..4376111 100644 --- a/virttest/libvirt_xml.py +++ b/virttest/libvirt_xml.py @@ -8,10 +8,8 @@ xml_utils module documentation for more information on working with XMLTreeFile instances. """ - -import logging, os.path -from autotest.client.shared import error, xml_utils -from virttest import libvirt_vm, virsh +from autotest.client.shared import xml_utils +from virttest import virsh class LibvirtXMLError(Exception):