You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Turpial usa el proxy definido en gnome solo si se inicia desde la consola, aqui va un patch que le da solucion (probado en debian-sid con python 2.5.5-6 y 2.6.5+20100730-1):
Turpial usa el proxy definido en gnome solo si se inicia desde la consola, aqui va un patch que le da solucion (probado en debian-sid con python 2.5.5-6 y 2.6.5+20100730-1):
--- oauth_client.py.orig 2010-08-03 14:44:51.000000000 -0400
+++ oauth_client.py 2010-08-03 16:18:41.000000000 -0400
@@ -1,6 +1,7 @@
import httplib
import urllib2
import oauth as oauth
+import gconf
SERVER = 'twitter.com'
PORT = 80
@@ -9,6 +10,20 @@
ACCESS_TOKEN_URL = '%s/oauth/access_token'
AUTHORIZATION_URL = '%s/oauth/authorize'
+gclient = gconf.client_get_default()
+proxies = {}
+if gclient.get_bool('/system/http_proxy/use_http_proxy'):
class TurpialAuthClient(oauth.OAuthClient):
The text was updated successfully, but these errors were encountered: