1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-25 06:33:17 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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):