From patchwork Mon Jun 13 11:17:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jiri Zupka X-Patchwork-Id: 874392 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 p5DBHoii027970 for ; Mon, 13 Jun 2011 11:17:50 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751688Ab1FMLRZ (ORCPT ); Mon, 13 Jun 2011 07:17:25 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16472 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751225Ab1FMLRY (ORCPT ); Mon, 13 Jun 2011 07:17:24 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p5DBHNxm003274 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 13 Jun 2011 07:17:23 -0400 Received: from jzupka.local.com (vpn1-6-206.ams2.redhat.com [10.36.6.206]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p5DBHKx5017044; Mon, 13 Jun 2011 07:17:21 -0400 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=BDupka?= To: kvm-autotest@redhat.com, kvm@vger.kernel.org, autotest@test.kernel.org, lmr@redhat.com Cc: jzupka@redhat.com Subject: [PATCH] Repair minor exception text formatting in kvm.py. Date: Mon, 13 Jun 2011 13:17:16 +0200 Message-Id: <1307963836-13689-1-git-send-email-jzupka@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 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, 13 Jun 2011 11:17:51 +0000 (UTC) Signed-off-by: Ji?í Župka --- client/tests/kvm/kvm.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/client/tests/kvm/kvm.py b/client/tests/kvm/kvm.py index bb17f28..84c361e 100644 --- a/client/tests/kvm/kvm.py +++ b/client/tests/kvm/kvm.py @@ -71,7 +71,8 @@ class kvm(test.test): if subtest_dir is None: raise error.TestError("Could not find test file %s.py " "on either %s or %s directory" % - subtest_dir_kvm, subtest_dir_virt) + (t_type, subtest_dir_kvm, + subtest_dir_virt)) # Load the test module f, p, d = imp.find_module(t_type, [subtest_dir]) test_module = imp.load_module(t_type, f, p, d)