wustho / epr

CLI Epub Reader
MIT License
1.2k stars 49 forks source link

[MacOS] open images fixed! #64

Closed kai0200 closed 7 months ago

kai0200 commented 7 months ago

1036 # img = re.search("(?<=[IMG:)[0-9]+(?=])", i) img = re.search("[IMG:[0-9]+]", i)

1044 #impath = imgs[int(gambar[0]) impath = imgs[int(gambar[0].strip('[]').split(':')[1])]