mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-10 21:24:15 +00:00
Replace "ast" by "json.loads" to handle enums with default values/colors (fix for #2398)
This commit is contained in:
parent
056ecf0d90
commit
5e4cf839bc
@ -19,7 +19,6 @@
|
||||
|
||||
import os
|
||||
import re
|
||||
import ast
|
||||
import json
|
||||
from datetime import datetime
|
||||
from urllib.parse import quote
|
||||
@ -388,7 +387,7 @@ class CustomColumns(Base):
|
||||
normalized = Column(Boolean)
|
||||
|
||||
def get_display_dict(self):
|
||||
display_dict = ast.literal_eval(self.display)
|
||||
display_dict = json.loads(self.display)
|
||||
return display_dict
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user