# HG changeset patch # User nanaya # Date 1656051294 -32400 # Node ID 137b18a1898e4a06763a489a06c92a661117b7ab # Parent a34ee4c7d0cebf3b37c2e5517c9b3bb87d244f11 [cek.py] Python 3 diff -r a34ee4c7d0ce -r 137b18a1898e bin/cek.py --- a/bin/cek.py Mon Jun 13 00:56:26 2022 +0900 +++ b/bin/cek.py Fri Jun 24 15:14:54 2022 +0900 @@ -19,4 +19,4 @@ if __name__ == "__main__": for file in sys.argv[1:]: - print "%s %s" % (file, get_file_crc32(file)) + print(f'{file} {get_file_crc32(file)}')