summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2016-01-25 15:01:38 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2016-01-25 15:01:38 +0000
commit9f8d4baf9b9b991abdc9be8c6831f1c641099ba5 (patch)
tree88410c440e02a031952d0b53b6876045cee99fbb /alot
parent814e945c8696954aaad697a6caafdd44638ef40f (diff)
parentc273a102ff7e5e356a4a3b3ddff0ec2a7ecbe572 (diff)
Merge pull request #832 from lucc/fix/docstring
Fix docstring for alot.addressbook.AddressBook.
Diffstat (limited to 'alot')
-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