diff options
Diffstat (limited to 'pip/commands/search.py')
-rw-r--r-- | pip/commands/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pip/commands/search.py b/pip/commands/search.py index 561f0df13..1a6bf9c52 100644 --- a/pip/commands/search.py +++ b/pip/commands/search.py @@ -27,7 +27,7 @@ class SearchCommand(Command): if not args: logger.warn('ERROR: Missing required argument (search query).') return - query = ' '.join(args) + query = args index_url = options.index pypi_hits = self.search(query, index_url) |