Mercurial > p > roundup > code
diff roundup/backends/sessions_rdbms.py @ 5252:0b154486ed38
Make sure that the name property is initialized to none.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 10 Aug 2017 22:38:13 -0400 |
| parents | bf13b28156f3 |
| children | 62de601bdf6f |
line wrap: on
line diff
--- a/roundup/backends/sessions_rdbms.py Thu Aug 10 22:35:05 2017 -0400 +++ b/roundup/backends/sessions_rdbms.py Thu Aug 10 22:38:13 2017 -0400 @@ -13,6 +13,7 @@ Keys are id strings, values are automatically marshalled data. ''' + name = None def __init__(self, db): self.db = db self.cursor = self.db.cursor
