summaryrefslogtreecommitdiff
path: root/tests/test_soledad
diff options
context:
space:
mode:
authorVictor Shyba <victor1984@riseup.net>2017-10-25 13:16:08 -0300
committerVictor Shyba <victor1984@riseup.net>2017-10-27 16:01:48 -0300
commited48667738335c0f54f0e522c684231f2b740403 (patch)
tree5ee6cd775877e444bd44a12bc9fda14737eb32c5 /tests/test_soledad
parent99658eb24a2cd2bb2c23147a837f9402c11de160 (diff)
[style] E722 do not use bare except
Diffstat (limited to 'tests/test_soledad')
-rw-r--r--tests/test_soledad/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_soledad/util.py b/tests/test_soledad/util.py
index ca8d098d..fecb18e8 100644
--- a/tests/test_soledad/util.py
+++ b/tests/test_soledad/util.py
@@ -331,7 +331,7 @@ class CouchDBTestCase(unittest.TestCase, MockedSharedDBTest):
def delete_db(self, name):
try:
self.couch_server.delete(name)
- except:
+ except Exception:
# ignore if already missing
pass