From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57866) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXuTh-0000rJ-4j for qemu-devel@nongnu.org; Mon, 22 Feb 2016 12:41:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXuTd-0008Qk-0z for qemu-devel@nongnu.org; Mon, 22 Feb 2016 12:40:57 -0500 Received: from mail-wm0-x234.google.com ([2a00:1450:400c:c09::234]:38805) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXuTc-0008Qf-Or for qemu-devel@nongnu.org; Mon, 22 Feb 2016 12:40:52 -0500 Received: by mail-wm0-x234.google.com with SMTP id a4so173885909wme.1 for ; Mon, 22 Feb 2016 09:40:52 -0800 (PST) Sender: Paolo Bonzini References: <1455848416-13177-1-git-send-email-famz@redhat.com> <20160222172951.GB10927@stefanha-x1.localdomain> From: Paolo Bonzini Message-ID: <56CB4822.2030901@redhat.com> Date: Mon, 22 Feb 2016 18:40:50 +0100 MIME-Version: 1.0 In-Reply-To: <20160222172951.GB10927@stefanha-x1.localdomain> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] scripts/kvm/kvm_stat: Fix missing right parantheses and ".format(...)" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi , Fam Zheng Cc: Janosch Frank , qemu-devel@nongnu.org, "Jason J. Herne" On 22/02/2016 18:29, Stefan Hajnoczi wrote: >>> + "current user.\n" + >>> .format(PATH_DEBUGFS_TRACING)) > According to ./configure the minimum Python version is 2.4. > > str.format() is a Python 2.6+ feature. This was changed in September 2015: commit fec21036ff516d20721abc01ae7be99ae5bb0c7b Author: Markus Armbruster Date: Fri Sep 4 21:53:03 2015 +0200 configure: Require Python 2.6 RHEL-6 and SLES-11 provide Python 2.6. It'll also work on OS X back to 10.6. Signed-off-by: Markus Armbruster Message-Id: <1441396383-17304-1-git-send-email-armbru@redhat.com> Reviewed-by: Peter Maydell Signed-off-by: Paolo Bonzini Are you looking at an older version of the configure script? Paolo