]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commit
support/scripts/check-uniq-files: add indices in format string
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sat, 3 Mar 2018 14:36:19 +0000 (15:36 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 3 Mar 2018 16:17:41 +0000 (17:17 +0100)
commit62fa5e17cbce8cc5f7f308b5916b2ed5fd98816d
tree8e4b17d5b81c1ef0bbb7e9eec96155fd00567383
parent63dfbca2c3ad509504e9118a49d396210917b079
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 "<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@bootlin.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
support/scripts/check-uniq-files