Skip to content
This repository has been archived by the owner on Dec 5, 2021. It is now read-only.

Commit

Permalink
Remove wrong parameter in search query
Browse files Browse the repository at this point in the history
  • Loading branch information
mardiros committed Jun 18, 2015
1 parent 14bccb2 commit 19df37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyshop/views/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def _create_release_file(self, release, data):
def _search_package(self, package_name):
api = pypi.proxy

search_result = api.search({'name': package_name}, True)
search_result = api.search({'name': package_name})
search_count = len(search_result)
if not search_count:
return None
Expand Down

0 comments on commit 19df37c

Please sign in to comment.