bilelmoussaoui / Hardcode-Tray

Fixes Hardcoded tray icons in Linux
Other
863 stars 63 forks source link

Fix issue related to `NamedTemporaryFile` in `svg` module (fixes #639) #640

Closed althonos closed 4 years ago

althonos commented 4 years ago

See #639.

Using a context makes sure that the NamedTemporaryFile used in to_bin is only closed when we are done reading its content, and prevents an early deletion of the file if it gets garbage-collected before the results of to_png are read.

bilelmoussaoui commented 4 years ago

Thanks!