From patchwork Mon Jun 20 21:29:14 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 898682 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p5KLTMnJ002814 for ; Mon, 20 Jun 2011 21:29:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755321Ab1FTV3T (ORCPT ); Mon, 20 Jun 2011 17:29:19 -0400 Received: from mx1.redhat.com ([209.132.183.28]:7208 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752645Ab1FTV3T (ORCPT ); Mon, 20 Jun 2011 17:29:19 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p5KLTHwv029015 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 20 Jun 2011 17:29:18 -0400 Received: from freedom.redhat.com (vpn-8-239.rdu.redhat.com [10.11.8.239]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p5KLTFZP027858; Mon, 20 Jun 2011 17:29:16 -0400 From: Lucas Meneghel Rodrigues To: autotest@test.kernel.org Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues Subject: [PATCH] client tools: Fix rebase bug on cd_hash.py Date: Mon, 20 Jun 2011 18:29:14 -0300 Message-Id: <1308605354-5873-1-git-send-email-lmr@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 20 Jun 2011 21:29:22 +0000 (UTC) I really thought I had fixed this one. cd_hash makes reference to a KvmLoggingConfig class, that existed prior to the refactor. Signed-off-by: Lucas Meneghel Rodrigues --- client/tools/cd_hash.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/client/tools/cd_hash.py b/client/tools/cd_hash.py index c658447..3db1e47 100755 --- a/client/tools/cd_hash.py +++ b/client/tools/cd_hash.py @@ -16,7 +16,7 @@ if __name__ == "__main__": parser = optparse.OptionParser("usage: %prog [options] [filenames]") options, args = parser.parse_args() - logging_manager.configure_logging(virt_utils.KvmLoggingConfig()) + logging_manager.configure_logging(virt_utils.VirtLoggingConfig()) if args: filenames = args