Spaces:
Runtime error
Runtime error
Try to set local dir for ImgKit.
Browse files
app.py
CHANGED
@@ -252,7 +252,7 @@ def html_to_png(card_name, html):
|
|
252 |
try:
|
253 |
css = ['./css/mana.css', './css/keyrune.css',
|
254 |
'./css/mtg_custom.css']
|
255 |
-
imgkit.from_string(html, path, {"xvfb": "", "enable-local-file-access": ""}, css=css)
|
256 |
except Exception as e:
|
257 |
print("ImgKit Error:")
|
258 |
print(e)
|
|
|
252 |
try:
|
253 |
css = ['./css/mana.css', './css/keyrune.css',
|
254 |
'./css/mtg_custom.css']
|
255 |
+
imgkit.from_string(html, path, {"xvfb": "", "enable-local-file-access": "", "XDG_RUNTIME_DIR": "."}, css=css)
|
256 |
except Exception as e:
|
257 |
print("ImgKit Error:")
|
258 |
print(e)
|