X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/8ddd8500ac82af9cd4fcc54e173035bba0ce0dc0..ce92ec7762914d9499be24d1730338ed1de7f642:/twitter/cmdline.py diff --git a/twitter/cmdline.py b/twitter/cmdline.py index b2ed3b4..fcb5892 100644 --- a/twitter/cmdline.py +++ b/twitter/cmdline.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# encoding: utf-8 """ USAGE: @@ -331,15 +333,14 @@ class SearchAction(Action): # We need to be pointing at search.twitter.com to work, and it is less # tangly to do it here than in the main() twitter.domain="search.twitter.com" - twitter.uri="" + twitter.uriparts=() # We need to bypass the TwitterCall parameter encoding, so we # don't encode the plus sign, so we have to encode it ourselves query_string = "+".join( [quote(term.decode(get_term_encoding())) for term in options['extra_args']]) - twitter.encoded_args = "q=%s" %(query_string) - results = twitter.search()['results'] + results = twitter.search(q=query_string)['results'] f = get_formatter('search', options) for result in results: resultStr = f(result, options)