xitiomet / python-twitter

fork of python-twitter

Mostly the same, but i added support for Mentions http://apiwiki.twitter.com/Twitter-REST-API-Met...

Clone this repository (size: 393.3 KB): HTTPS / SSH
$ hg clone http://hg.openstatic.org/python-twitter
commit 124: adedffd98396
parent 123: 9fabfd8ae1e2
branch: dclinton
Fixes typo checking wrong parameter (count instead of max_id)
dcli...@b35c0ba3-1128-0410-9219-0b39014e361d
15 months ago

Changed (Δ1 byte):

raw changeset »

twitter.py (1 lines added, 1 lines removed)

Up to file-list twitter.py:

@@ -469,7 +469,7 @@ class Api(object):
469
469
470
470
    if max_id:
471
471
      try:
472
        parameters['max_id'] = int(count)
472
        parameters['max_id'] = int(max_id)
473
473
      except:
474
474
        raise TwitterError("max_id must be an integer")
475
475