summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2015-11-24 17:39:55 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2015-11-24 17:39:55 +0000
commit2d8bd402ea55c853762c605e5a7c006687660bd1 (patch)
tree39f9573dae1f7652baca4f737ab0e1fc5d3ef8f2
parent3988f5f74b154d47755da206bb0659b957e495fa (diff)
remove deprecated method
see also issue #794
-rw-r--r--alot/db/manager.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/alot/db/manager.py b/alot/db/manager.py
index 2847956d..be80b4dc 100644
--- a/alot/db/manager.py
+++ b/alot/db/manager.py
@@ -269,16 +269,6 @@ class DBManager(object):
"""returns number of threads that match `querystring`"""
return self.query(querystring).count_threads()
- def search_thread_ids(self, querystring):
- """
- returns the ids of all threads that match the `querystring`
- This copies! all integer thread ids into an new list.
-
- :returns: list of str
- """
-
- return self.query_threaded(querystring)
-
def _get_notmuch_thread(self, tid):
"""returns :class:`notmuch.database.Thread` with given id"""
query = self.query('thread:' + tid)