From f05910566c149ce124d74373ebc60db346123668 Mon Sep 17 00:00:00 2001 From: "Matthew A. Russell" Date: Thu, 10 Mar 2011 10:43:18 -0500 Subject: [PATCH] Fixing a typo in constructing a multi-token query term --- recipe__search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe__search.py b/recipe__search.py index 87d21a8..e894d54 100644 --- a/recipe__search.py +++ b/recipe__search.py @@ -4,7 +4,7 @@ import json import twitter -Q = ' '.join(sys.argv[1]) +Q = ' '.join(sys.argv[1:]) MAX_PAGES = 15 RESULTS_PER_PAGE = 100