From patchwork Wed Jun 10 20:00:58 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 29406 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n5AK2l9q003995 for ; Wed, 10 Jun 2009 20:02:48 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758068AbZFJUBH (ORCPT ); Wed, 10 Jun 2009 16:01:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757830AbZFJUBG (ORCPT ); Wed, 10 Jun 2009 16:01:06 -0400 Received: from mx2.redhat.com ([66.187.237.31]:58853 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756892AbZFJUBF (ORCPT ); Wed, 10 Jun 2009 16:01:05 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n5AK13a6020532; Wed, 10 Jun 2009 16:01:03 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n5AK11qS014003; Wed, 10 Jun 2009 16:01:02 -0400 Received: from localhost.localdomain (vpn-10-91.bos.redhat.com [10.16.10.91]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n5AK0xH9000364; Wed, 10 Jun 2009 16:01:00 -0400 From: Lucas Meneghel Rodrigues To: autotest@test.kernel.org Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues Subject: [PATCH] Fixing spacing on messages coming from kvm_config Date: Wed, 10 Jun 2009 17:00:58 -0300 Message-Id: <1244664059-25505-1-git-send-email-lmr@redhat.com> X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org During the logging conversion, when breaking long lines, a space was not add to some of the lines on kvm_config. This patch fixes this mistake. Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/kvm/kvm_config.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/tests/kvm/kvm_config.py b/client/tests/kvm/kvm_config.py index e390d75..1595761 100755 --- a/client/tests/kvm/kvm_config.py +++ b/client/tests/kvm/kvm_config.py @@ -304,7 +304,7 @@ class config: if op_found: if self.debug and not restricted: self.__debug_print(indented_line, - "Parsing operator (%d dicts in current" + "Parsing operator (%d dicts in current " "context)" % len_list) (left, value) = self.split_and_strip(line, op_found) filters_and_key = self.split_and_strip(left, ":") @@ -351,7 +351,7 @@ class config: list = filtered_list if self.debug and not restricted: self.__debug_print(indented_line, - "Parsing no/only (%d dicts in current" + "Parsing no/only (%d dicts in current " "context, %d remain)" % (len_list, len(list))) @@ -374,7 +374,7 @@ class config: elif line == "subvariants:": if self.debug and not restricted: self.__debug_print(indented_line, - "Entering subvariants block (%d dicts in" + "Entering subvariants block (%d dicts in " "current context)" % len_list) new_list = [] # Remember current file position @@ -422,7 +422,7 @@ class config: if self.debug and not restricted: self.__debug_print(indented_line, "Entering multi-line exception block" - "(%d dicts in current context outside" + "(%d dicts in current context outside " "exception)" % len_list) line = line.strip(":") new_list = []