From 35d84021736f5509dc37f12ca92a05693cff5d47 Mon Sep 17 00:00:00 2001 From: Mike Helmick Date: Thu, 16 May 2013 14:45:38 -0400 Subject: [PATCH] Include ints in params too Oops ;P --- twython/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twython/helpers.py b/twython/helpers.py index 74aea99..7b8275b 100644 --- a/twython/helpers.py +++ b/twython/helpers.py @@ -12,7 +12,7 @@ def _transparent_params(_params): params[k] = 'true' else: params[k] = 'false' - elif isinstance(v, basestring): + elif isinstance(v, basestring) or isinstance(v, int): params[k] = v else: continue