Unverified Commit 5511925b authored by Zaroz's avatar Zaroz Committed by GitHub

Removed elif "url" identifier format type

Removed elif "url" identifier format type, since else output is identical
parent 940c9c45
...@@ -156,8 +156,6 @@ class Identifiers(Base): ...@@ -156,8 +156,6 @@ class Identifiers(Base):
return u"https://portal.issn.org/resource/ISSN/{0}".format(self.val) return u"https://portal.issn.org/resource/ISSN/{0}".format(self.val)
elif format_type == "isfdb": elif format_type == "isfdb":
return u"http://www.isfdb.org/cgi-bin/pl.cgi?{0}".format(self.val) return u"http://www.isfdb.org/cgi-bin/pl.cgi?{0}".format(self.val)
elif format_type == "url":
return u"{0}".format(self.val)
else: else:
return u"{0}".format(self.val) return u"{0}".format(self.val)
......
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