From: TANIGUCHI Takaki <takaki@asis.media-as.org>
Date: Sat, 19 Mar 2022 17:39:16 +0900
Subject: fix python3 incompatible syntax

---
 lsplug.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lsplug.py b/lsplug.py
index bc81b3b..8a0cda8 100644
--- a/lsplug.py
+++ b/lsplug.py
@@ -58,8 +58,8 @@ for name,e in [(name, all_meta[name]) for name in sorted(all_meta)]:
                 txt_p = txt_p + "| [{title}]({url}) | **{version}** | {type} | {category} | {dir} | *{priority}* | {flags} | {description} |\n".format(**e)
             else:
                 txt_f = txt_f + "| {title} | **{version}** | {type} | {category} | {dir} | *{priority}* | {description} |\n".format(**e)
-        except Exception, e:
-            print "ERROR*** ", name, e
+        except Exception as e:
+            print("ERROR*** ", name, e)
             pass
     
     # extract icon
@@ -67,6 +67,6 @@ for name,e in [(name, all_meta[name]) for name in sorted(all_meta)]:
         with open("help/img/%s_%s.png" % (e["type"], name), "wb") as f:
             f.write(b64decode(e["png"]))
             
-print txt_p
-print "Features: 🔍 search / ® regex / ¶ dom / { json / ⏳ double extraction delay"
-print txt_f
+print(txt_p)
+print("Features: 🔍 search / ® regex / ¶ dom / { json / ⏳ double extraction delay")
+print(txt_f)
