[FIX] http.py: session id is `sid` attribute

This commit is contained in:
Christophe Simonis 2014-09-01 15:49:26 +02:00
parent 9c339d8df3
commit 0f122cc50c
1 changed files with 2 additions and 2 deletions

View File

@ -298,9 +298,9 @@ class WebRequest(object):
.. deprecated:: 8.0
Use the ``id`` attribute on :attr:`.session`
Use the ``sid`` attribute on :attr:`.session`
"""
return self.session.id
return self.session.sid
@property
def registry(self):