1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-09-02 02:47:58 +00:00

Updated db.py

changed __repr__ else statement to allow for custom id entries
This commit is contained in:
Zaroz
2021-03-02 23:46:02 -06:00
committed by GitHub
parent 87d6008dfc
commit 940c9c45d7

View File

@@ -159,7 +159,7 @@ class Identifiers(Base):
elif format_type == "url":
return u"{0}".format(self.val)
else:
return u""
return u"{0}".format(self.val)
class Comments(Base):