From patchwork Mon Feb 8 12:08:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lespiau, Damien" X-Patchwork-Id: 8249171 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id D817E9F6DA for ; Mon, 8 Feb 2016 12:08:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F07AB202EC for ; Mon, 8 Feb 2016 12:08:41 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 191D6202FF for ; Mon, 8 Feb 2016 12:08:41 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A66B86E3A5; Mon, 8 Feb 2016 04:08:40 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by gabe.freedesktop.org (Postfix) with ESMTP id C94BF6E3A5 for ; Mon, 8 Feb 2016 04:08:39 -0800 (PST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP; 08 Feb 2016 04:08:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,415,1449561600"; d="scan'208";a="898567173" Received: from mozol-mobl.ger.corp.intel.com (HELO strange.ger.corp.intel.com) ([10.252.15.57]) by fmsmga001.fm.intel.com with ESMTP; 08 Feb 2016 04:08:31 -0800 From: Damien Lespiau To: intel-gfx@lists.freedesktop.org Date: Mon, 8 Feb 2016 12:08:29 +0000 Message-Id: <1454933309-7452-1-git-send-email-damien.lespiau@intel.com> X-Mailer: git-send-email 2.4.3 Cc: Dylan Baker , Sameer Kibey Subject: [Intel-gfx] [PATCH i-g-t] list-workarounds: Fix python 2 print statement X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP That script is a python 3 script, so we can't use the python 2 print statement, it's a function now. I missed it in the review because reviewing a diff without additional context gives you a partial story. Cc: Sameer Kibey Cc: Dylan Baker Signed-off-by: Damien Lespiau Reviewed-by: Dylan Baker --- scripts/list-workarounds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/list-workarounds b/scripts/list-workarounds index 8b41ae5..70c026d 100755 --- a/scripts/list-workarounds +++ b/scripts/list-workarounds @@ -96,7 +96,7 @@ def print_workarounds(project_root, driver_dir, project): sys.exit(1) parse(work_arounds) - print "\nList of workarounds found in %s:" % project + print("\nList of workarounds found in %s:" % project) for wa in sorted(workarounds.keys()): if not options.platform: print("%s: %s" % (wa, ', '.join(workarounds[wa])))