You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lektor-i18n-plugin used the file /tmp/templates.pot in its workings.
(Where /tmp/ could be something else as returned by tempfile.gettempdir()).
Using a fixed name for a "temporary" file in a directory that is
writable by other users is a security issue. Further, using the same
file in multiple (parallel) runs of lektor may lead to undesired
results.
Hence, we now use a proper tempfile as created by
tempfile.NamedTemporaryFile().
0 commit comments