diff options
author | Christian Wyglendowski <none@none> | 2006-08-07 13:51:25 +0000 |
---|---|---|
committer | Christian Wyglendowski <none@none> | 2006-08-07 13:51:25 +0000 |
commit | 63510cef445a7b32ee17c0a0833b412cb8782abc (patch) | |
tree | 672447fa6ed03825ab4cf1b69c6ecb4d89fbcc1a /cherrypy/_cpengine.py | |
parent | c9c8cd4023fd15a11a284379888a4187b41c3da1 (diff) | |
download | cherrypy-git-63510cef445a7b32ee17c0a0833b412cb8782abc.tar.gz |
Giving NotReadyRequest a protocol attribute.
Diffstat (limited to 'cherrypy/_cpengine.py')
-rw-r--r-- | cherrypy/_cpengine.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cherrypy/_cpengine.py b/cherrypy/_cpengine.py index 674a3c87..852d868b 100644 --- a/cherrypy/_cpengine.py +++ b/cherrypy/_cpengine.py @@ -222,6 +222,7 @@ class NotReadyRequest: def __init__(self, msg): self.msg = msg + self.protocol = (1,1) def close(self): pass |