fix: missing ] on show_url

This commit is contained in:
Kat Inskip 2025-02-28 00:39:16 -08:00
parent 7657c18f7d
commit a42a01299b
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -92,7 +92,7 @@ class Konawall(wx.adv.TaskBarIcon):
def open_url(self, evt=None): def open_url(self, evt=None):
for post in self.current: for post in self.current:
subprocess.call(["xdg-open", post["show_url"]) subprocess.call(["xdg-open", post["show_url"]])
def open_log(self, evt=None): def open_log(self, evt=None):
subprocess.call(["xdg-open", self.log_path]) subprocess.call(["xdg-open", self.log_path])