changeset 111:ab3d547f3e76

one uncommited fix from quentin
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Fri, 22 Sep 2023 15:27:28 +0100
parents a0ea1e4a714d
children 827eadc72122
files bin/sort_date.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bin/sort_date.py	Tue Sep 19 19:40:58 2023 +0100
+++ b/bin/sort_date.py	Fri Sep 22 15:27:28 2023 +0100
@@ -120,6 +120,6 @@
   ctk=cmp_to_key(locale.strcoll)
   for key, ts in sorted((kk for l in ff if (kk:=keyed(l)) is not None),
                    key=lambda x:x[0]):
-    print(key[0],key[1],key[2].encode('ascii',errors=java_unicode)
-          ,ts,sep='\t')
+    print(key[0],key[1],key[2].encode('ascii',errors='java_unicode'),
+          ts,sep='\t')