This commit is contained in:
Kovid Goyal 2018-11-08 10:02:30 +05:30
parent dc636725fa
commit 79a0a7ab58
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 3 deletions

View file

@ -495,7 +495,7 @@ def get_cached_cover_url(self, identifiers):
that could result in a generic cover image or a not found error.
'''
return None
def id_from_url(self, url):
'''
Parse a URL and return a tuple of the form:
@ -505,7 +505,6 @@ def id_from_url(self, url):
'''
return None
def identify_results_keygen(self, title=None, authors=None,
identifiers={}):
'''

View file

@ -1668,7 +1668,7 @@ def parse_clipboard_for_identifier(self):
text = unicode(QApplication.clipboard().text()).strip()
if not text:
return False
rules = msprefs['id_link_rules']
if rules:
formatter = EvalFormatter()