summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/mailstore/searchable_mailstore.py
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2015-08-30 17:52:59 -0300
committerVictor Shyba <victor.shyba@gmail.com>2015-08-30 17:52:59 -0300
commit386398020f172be82bf27dd03c509e91c7e2a6d8 (patch)
treea6e96e1146108a1c6112f9a2a5071cafd7c1e708 /service/pixelated/adapter/mailstore/searchable_mailstore.py
parent1d907ef88cc3a0ab1c169fa3722958eb7da3cbed (diff)
[bug] NotImplemented (typo)-> NotImplementedError
Diffstat (limited to 'service/pixelated/adapter/mailstore/searchable_mailstore.py')
-rw-r--r--service/pixelated/adapter/mailstore/searchable_mailstore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/pixelated/adapter/mailstore/searchable_mailstore.py b/service/pixelated/adapter/mailstore/searchable_mailstore.py
index d4e5bd24..0c5310eb 100644
--- a/service/pixelated/adapter/mailstore/searchable_mailstore.py
+++ b/service/pixelated/adapter/mailstore/searchable_mailstore.py
@@ -77,4 +77,4 @@ class SearchableMailStore(object): # implementes MailStore
SearchableMailStore._create_delegator(name)
return super(SearchableMailStore, self).__getattribute__(name)
else:
- raise NotImplemented('No attribute %s' % name)
+ raise NotImplementedError('No attribute %s' % name)