projects
/
certmaster.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7a437a
)
fix certmaster/func connections out for fedora 14/python 2.7
author
Felix Kaechele
<felix at fetzig org>
Fri, 25 Feb 2011 20:30:09 +0000
(15:30 -0500)
committer
Seth Vidal
<skvidal@fedoraproject.org>
Fri, 25 Feb 2011 20:30:09 +0000
(15:30 -0500)
certmaster/SSLConnection.py
patch
|
blob
|
history
diff --git
a/certmaster/SSLConnection.py
b/certmaster/SSLConnection.py
index
4d4c162
..
3e72d5e
100644
(file)
--- a/
certmaster/SSLConnection.py
+++ b/
certmaster/SSLConnection.py
@@
-62,7
+62,7
@@
class SSLConnection:
c, a = self.__dict__["conn"].accept()
return (SSLConnection(c), a)
- def makefile(self, mode
, bufsize
):
+ def makefile(self, mode
='r', bufsize=-1
):
"""
We need to use socket._fileobject Because SSL.Connection
doesn't have a 'dup'. Not exactly sure WHY this is, but