Mercurial > p > roundup > code
diff roundup/backends/sessions_dbm.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 | d5da643b3d25 |
| children | 0e6ed3d72f92 |
line wrap: on
line diff
--- a/roundup/backends/sessions_dbm.py Thu Aug 10 22:35:05 2017 -0400 +++ b/roundup/backends/sessions_dbm.py Thu Aug 10 22:38:13 2017 -0400 @@ -20,6 +20,7 @@ Keys are id strings, values are automatically marshalled data. ''' _db_type = None + name = None def __init__(self, db): self.config = db.config
