diff options
author | drebs <drebs@leap.se> | 2013-01-16 09:55:27 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-01-16 09:55:27 -0200 |
commit | c60505094e20ffbae5753383cfd73825c7a0114d (patch) | |
tree | dd857b0e9207a5589a37e9c65be0a40f94c1ff39 /backends/couch.py | |
parent | 984a33de1322437e3979e7324ae042daa52d91e9 (diff) |
Fix copy_database for couch tests.
Diffstat (limited to 'backends/couch.py')
-rw-r--r-- | backends/couch.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/backends/couch.py b/backends/couch.py index 5cde4805..78026af8 100644 --- a/backends/couch.py +++ b/backends/couch.py @@ -41,10 +41,8 @@ class CouchDatabase(ObjectStore): #------------------------------------------------------------------------- def _get_doc(self, doc_id, check_for_conflicts=False): - """Get just the document content, without fancy handling. - - Conflicts do not happen on server side, so there's no need to check - for them. + """ + Get just the document content, without fancy handling. """ cdoc = self._database.get(doc_id) if cdoc is None: |