From: Thomas Petazzoni Date: Sat, 3 Mar 2018 14:36:19 +0000 (+0100) Subject: support/scripts/check-uniq-files: add indices in format string X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=62fa5e17cbce8cc5f7f308b5916b2ed5fd98816d;p=buildroot.git support/scripts/check-uniq-files: add indices in format string Using {} in format strings is only supported in sufficiently recent Python versions. Python 2.6 doesn't support this, and only format strings with numbered arguments: {0}, {1}, etc. Python 2.7: $ python -c 'print("foo {}".format(12))' foo 12 $ python -c 'print("foo {0}".format(12))' foo 12 Python 2.6: $ python -c 'print("foo {}".format(12))' Traceback (most recent call last): File "", line 1, in ValueError: zero length field name in format $ python -c 'print("foo {0}".format(12))' foo 12 Signed-off-by: Thomas Petazzoni Acked-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/support/scripts/check-uniq-files b/support/scripts/check-uniq-files index a3d176710e..be808cce03 100755 --- a/support/scripts/check-uniq-files +++ b/support/scripts/check-uniq-files @@ -5,7 +5,7 @@ import csv import argparse from collections import defaultdict -warn = 'Warning: {} file "{}" is touched by more than one package: {}\n' +warn = 'Warning: {0} file "{1}" is touched by more than one package: {2}\n' def main():