From 7ae6c608435cbc3fd988f66cb7ba7dd577902b65 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Wed, 5 Sep 2012 19:16:19 +0200 Subject: [PATCH] Remove duplicated default value --- github/Requester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/Requester.py b/github/Requester.py index 8308b053..b01c73d4 100644 --- a/github/Requester.py +++ b/github/Requester.py @@ -24,7 +24,7 @@ except ImportError: #pragma no cover: only for Python 2.5 import GithubException class Requester: - def __init__( self, login_or_token, password, base_url, timeout=10 ): + def __init__( self, login_or_token, password, base_url, timeout ): if password is not None: login = login_or_token self.__authorizationHeader = "Basic " + base64.b64encode( login + ":" + password ).replace( '\n', '' )