summaryrefslogtreecommitdiff
path: root/alot/addressbook
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2016-01-25 15:54:30 +0100
committerLucas Hoffmann <l-m-h@web.de>2016-01-25 15:54:30 +0100
commitc273a102ff7e5e356a4a3b3ddff0ec2a7ecbe572 (patch)
tree88410c440e02a031952d0b53b6876045cee99fbb /alot/addressbook
parent814e945c8696954aaad697a6caafdd44638ef40f (diff)
Fix docstring for alot.addressbook.AddressBook.
The name of the referenced class was changed in 637b679003b353d2630fed8ca942f3ab522e68b5.
Diffstat (limited to 'alot/addressbook')
-rw-r--r--alot/addressbook/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/addressbook/__init__.py b/alot/addressbook/__init__.py
index f649b523..6269f5d1 100644
--- a/alot/addressbook/__init__.py
+++ b/alot/addressbook/__init__.py
@@ -15,7 +15,7 @@ class AddressBook(object):
This is an abstract class that leaves :meth:`get_contacts`
unspecified. See :class:`AbookAddressBook` and
- :class:`MatchSdtoutAddressbook` for implementations.
+ :class:`ExternalAddressbook` for implementations.
"""
def __init__(self, ignorecase=True):
self.reflags = re.IGNORECASE if ignorecase else 0