LEFT/RIGHT FLOOR symbol are not available by default in Windows. Replace with
authorOleksandr Gavenko <gavenkoa@gmail.com>
Sat, 11 Mar 2017 23:39:59 +0200
changeset 796 cf1f6e851933
parent 795 ae719088a31b
child 797 06e6d6a74049
LEFT/RIGHT FLOOR symbol are not available by default in Windows. Replace with 'topic' text.
py/gadict_c5.py
--- a/py/gadict_c5.py	Sat Mar 11 23:03:27 2017 +0200
+++ b/py/gadict_c5.py	Sat Mar 11 23:39:59 2017 +0200
@@ -132,14 +132,15 @@
         if sense.pos:
             FOUT.write("● «")
             FOUT.write(sense.pos)
-            FOUT.write("» ")
+            FOUT.write("»")
             need_sep = False
             if sense.topic_list and len(sense.topic_list) > 0:
-                FOUT.write("⌊")
+                FOUT.write(" topic: ")
                 FOUT.write(", ".join(["{"+s+"}" for s in sense.topic_list]))
-                FOUT.write("⌉")
                 need_sep = True
             if sense.ant_list and len(sense.ant_list) > 0:
+                if need_sep:
+                    FOUT.write(" |")
                 FOUT.write(" ant: ")
                 FOUT.write("; ".join(["{"+s+"}" for s in sense.ant_list]))
                 need_sep = True