diff options
author | Jannis Leidel <jannis@leidel.info> | 2011-04-30 23:20:34 +0200 |
---|---|---|
committer | Jannis Leidel <jannis@leidel.info> | 2011-04-30 23:20:34 +0200 |
commit | b1f2a9fddaa407cfbee6f249a52129e370800bd1 (patch) | |
tree | f41c2246cb66fe1aac134195fe788bd72baf2853 /pip/commands/search.py | |
parent | 6b6f4947c3b9747bef216ccf31f9c20c8bb255a9 (diff) | |
parent | 743124094bb98e73ff47addb1e3886bc9411c1e1 (diff) | |
download | pip-1.0.1.tar.gz |
Merge branch 'release/1.0.1'1.0.1
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) |