From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38686) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWagF-0003Wv-Ci for qemu-devel@nongnu.org; Thu, 18 Feb 2016 21:20:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWagC-0002Pz-1g for qemu-devel@nongnu.org; Thu, 18 Feb 2016 21:20:27 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48454) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWagB-0002Pu-S2 for qemu-devel@nongnu.org; Thu, 18 Feb 2016 21:20:23 -0500 From: Fam Zheng Date: Fri, 19 Feb 2016 10:20:16 +0800 Message-Id: <1455848416-13177-1-git-send-email-famz@redhat.com> Subject: [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: qemu-devel@nongnu.org Cc: Paolo Bonzini , "Jason J. Herne" , Janosch Frank They seem to have snuck in when applying Janosch Frank 's previous patch. Signed-off-by: Fam Zheng --- v2: Also fix .format. [Janosch] --- scripts/kvm/kvm_stat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/kvm/kvm_stat b/scripts/kvm/kvm_stat index 3cf1181..769d884 100755 --- a/scripts/kvm/kvm_stat +++ b/scripts/kvm/kvm_stat @@ -796,11 +796,12 @@ def check_access(options): sys.stderr.write("Please enable CONFIG_TRACING in your kernel " "when using the option -t (default).\n" "If it is enabled, make {0} readable by the " - "current user.\n") + "current user.\n" + .format(PATH_DEBUGFS_TRACING)) if options.tracepoints: sys.exit(1) - sys.stderr.write("Falling back to debugfs statistics!\n" + sys.stderr.write("Falling back to debugfs statistics!\n") options.debugfs = True sleep(5) -- 2.4.3