diff options
author | drebs <drebs@leap.se> | 2013-02-09 19:25:44 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-02-09 20:21:48 -0200 |
commit | a0f36427f9473c7f2d759b9d0605b72d2c401731 (patch) | |
tree | a61c20e82711279112c36dbf6fc34b551b4bce22 /src/leap/soledad/backends/couch.py | |
parent | 4c520d9ae0f677cc1b5cef20c197c1751335faea (diff) |
Enforce doc.rev as bytes to match Twisted expectations.
Diffstat (limited to 'src/leap/soledad/backends/couch.py')
-rw-r--r-- | src/leap/soledad/backends/couch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/soledad/backends/couch.py b/src/leap/soledad/backends/couch.py index 8757f5af..d349efaf 100644 --- a/src/leap/soledad/backends/couch.py +++ b/src/leap/soledad/backends/couch.py @@ -56,13 +56,13 @@ class CouchDatabase(ObjectStore): self._dbname = database # this will ensure that transaction and sync logs exist and are # up-to-date. - self.set_document_factory(LeapDocument) try: self._database = self._server[database] except ResourceNotFound: self._server.create(database) self._database = self._server[database] - super(CouchDatabase, self).__init__(replica_uid=replica_uid) + super(CouchDatabase, self).__init__(replica_uid=replica_uid, + document_factory=LeapDocument) #------------------------------------------------------------------------- # methods from Database |