[Buildroot] [PATCH 1/2] support/scripts/check-uniq-files: add indices in format string

Peter Korsgaard peter at korsgaard.com
Sat Mar 3 16:18:26 UTC 2018


>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni at bootlin.com> writes:

 > 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 "<string>", line 1, in <module>
 > ValueError: zero length field name in format
 > $ python -c 'print("foo {0}".format(12))'
 > foo 12

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard


More information about the buildroot mailing list