summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2011-12-04 13:53:04 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2011-12-04 13:53:04 +0000
commit2c01437befcbbfdf7e5f6b90d934cbe84480ece4 (patch)
treeec8ac0a30e79c36a54c523dda2a34fc37a7f5f8b
parent1b144a670da2943af711e31b2e71a21560531596 (diff)
parent0a35a2bf8c49b08ae97bcfdeb66384b979c35a46 (diff)
Merge branch 'master' into harden
-rw-r--r--alot/db.py3
-rw-r--r--alot/helper.py1
-rw-r--r--alot/message.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/alot/db.py b/alot/db.py
index 263990fb..d45c263f 100644
--- a/alot/db.py
+++ b/alot/db.py
@@ -229,7 +229,8 @@ class DBManager(object):
:param querystring: The query string to use for the lookup
:type query: str.
- :returns: a pipe together with the process that asynchronously fills it.
+ :returns: a pipe together with the process that asynchronously
+ writes to it.
:rtype: (:class:`multiprocessing.Pipe`,
:class:`multiprocessing.Process`)
"""
diff --git a/alot/helper.py b/alot/helper.py
index 380733af..c4e6d7fa 100644
--- a/alot/helper.py
+++ b/alot/helper.py
@@ -11,7 +11,6 @@ from email.mime.audio import MIMEAudio
from email.mime.base import MIMEBase
from email.mime.image import MIMEImage
from email.mime.text import MIMEText
-from email.mime.multipart import MIMEMultipart
import urwid
from settings import config
diff --git a/alot/message.py b/alot/message.py
index c76d6f75..311c784a 100644
--- a/alot/message.py
+++ b/alot/message.py
@@ -164,7 +164,7 @@ class Message(object):
This only adds the requested operation to this objects
:class:`DBManager's <alot.db.DBManager>` write queue.
- You need to call :meth:`~alot.db.DBManager.flush` to actually write out.
+ You need to call :meth:`~alot.db.DBManager.flush` to write out.
"""
self._dbman.tag('id:' + self._id, tags)
self._tags = self._tags.union(tags)
@@ -176,7 +176,7 @@ class Message(object):
This only adds the requested operation to this objects
:class:`DBManager's <alot.db.DBManager>` write queue.
- You need to call :meth:`~alot.db.DBManager.flush` to actually write out.
+ You need to call :meth:`~alot.db.DBManager.flush` to actually out.
"""
self._dbman.untag('id:' + self._id, tags)