From 5217129f637560a363548e8a4c2c643440e9c124 Mon Sep 17 00:00:00 2001 From: Sylvain POULAIN Date: Fri, 23 Jun 2023 19:05:44 +0400 Subject: [PATCH] Update README.rst Minor typo: print is not python3 compatible --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d7198c8..8c1d49a 100644 --- a/README.rst +++ b/README.rst @@ -81,7 +81,7 @@ You can process the tags as you wish. In particular, you can iterate through all for tag in tags.keys(): if tag not in ('JPEGThumbnail', 'TIFFThumbnail', 'Filename', 'EXIF MakerNote'): - print "Key: %s, value %s" % (tag, tags[tag]) + print("Key: %s, value %s" % (tag, tags[tag])) An ``if`` statement is used to avoid printing out a few of the tags that tend to be long or boring.