Remove duplicated default value

This commit is contained in:
Vincent Jacques
2012-09-05 19:16:19 +02:00
parent 7186391d9c
commit 7ae6c60843
+1 -1
View File
@@ -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', '' )