updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / certmaster / python_27.patch
blob1c28e9e764653ed4651ca8e7d19606a830f197b5
1 --- certmaster-0.27/certmaster/SSLConnection.py
2 +++ certmaster-0.27/certmaster/SSLConnection.py
3 @@ -62,7 +62,7 @@
4 c, a = self.__dict__["conn"].accept()
5 return (SSLConnection(c), a)
7 - def makefile(self, mode, bufsize):
8 + def makefile(self, mode='r', bufsize=-1):
9 """
10 We need to use socket._fileobject Because SSL.Connection
11 doesn't have a 'dup'. Not exactly sure WHY this is, but