Skip to content

Commit

Permalink
Merge pull request #879 from philborman/master
Browse files Browse the repository at this point in the history
Fix typo in libgen
  • Loading branch information
philborman authored Jun 20, 2017
2 parents 26590cc + d0980a8 commit 754a793
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lazylibrarian/torrentparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,8 +637,8 @@ def GEN(book=None):
if search[0] == '/':
search = search[1:]

searchURL = url_fix(host + "/%s?view=simple&open=0&phrase=0&column=def&res=100&req=" +
(search,book['searchterm']))
searchURL = url_fix(host + "/%s?view=simple&open=0&phrase=0&column=def&res=100&req=%s" %
(search, book['searchterm']))

result, success = fetchURL(searchURL)
if not success:
Expand Down

0 comments on commit 754a793

Please sign in to comment.