Unverified Commit 940c9c45 authored by Zaroz's avatar Zaroz Committed by GitHub

Updated db.py

changed __repr__ else statement to allow for custom id entries
parent 87d6008d
...@@ -159,7 +159,7 @@ class Identifiers(Base): ...@@ -159,7 +159,7 @@ class Identifiers(Base):
elif format_type == "url": elif format_type == "url":
return u"{0}".format(self.val) return u"{0}".format(self.val)
else: else:
return u"" return u"{0}".format(self.val)
class Comments(Base): class Comments(Base):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment