Skip to content

Commit

Permalink
bug fix again...
Browse files Browse the repository at this point in the history
  • Loading branch information
nanorepublica committed Dec 10, 2015
1 parent 1bc6da4 commit 3380d18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion duedil/search/pro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ def parse_next_url(self):
parsed_url = urlparse.urlsplit(self._next_url)
path = parsed_url.path.rsplit('/', 1)[-1]
if path.endswith('.json'):
path = path[:len('.json')] # grab the last part of the path
path = path[:-len('.json')] # grab the last part of the path
query_params = dict(urlparse.parse_qsl(parsed_url.query))
return path, query_params
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run_tests(self):
sys.exit(errno)


version = '0.6.7'
version = '0.6.8'

setup(name='duedil',
version=version,
Expand Down

0 comments on commit 3380d18

Please sign in to comment.