From: Ding Xiang Date: Fri, 14 Jan 2022 02:40:58 +0000 (+0800) Subject: spdxcheck.py: Fix a type error X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=28c9f3f9a01d954d8357bdb68fbe36255997bf14;p=linux.git spdxcheck.py: Fix a type error remove unused variable "col", otherwise there will be a type error as below: typeerror: not all arguments converted during string formatting Signed-off-by: Ding Xiang Link: https://lore.kernel.org/r/20220114024058.74536-1-dingxiang@cmss.chinamobile.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/scripts/spdxcheck.py b/scripts/spdxcheck.py index ebd06ae642c93..f3be8ed54f6d9 100755 --- a/scripts/spdxcheck.py +++ b/scripts/spdxcheck.py @@ -200,7 +200,7 @@ class id_parser(object): tok = pe.tok.value sys.stdout.write('%s: %d:%d %s: %s\n' %(fname, self.curline, col, pe.txt, tok)) else: - sys.stdout.write('%s: %d:0 %s\n' %(fname, self.curline, col, pe.txt)) + sys.stdout.write('%s: %d:0 %s\n' %(fname, self.curline, pe.txt)) self.spdx_errors += 1 def scan_git_tree(tree):