diff options
| author | Sebastian Spaeth <sebastian@sspaeth.de> | 2010-03-31 10:12:55 +0200 |
|---|---|---|
| committer | Sebastian Spaeth <sebastian@sspaeth.de> | 2010-03-31 10:12:55 +0200 |
| commit | a5596f375b4867c3a86298b74ddd7a494df2cf71 (patch) | |
| tree | 3edb46dd747fdb660a739c2ad24f7f41fd52e3b1 | |
| parent | 93298e11dce8b299868f427181cde6c01f8c91aa (diff) | |
database(): Actually return a value on remove_message()
| -rw-r--r-- | cnotmuch/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cnotmuch/database.py b/cnotmuch/database.py index bb8a9632..fd2d9a99 100644 --- a/cnotmuch/database.py +++ b/cnotmuch/database.py @@ -329,7 +329,7 @@ class Database(object): # Raise a NotmuchError if not initialized self._verify_initialized_db() - status = nmlib.notmuch_database_remove_message(self._db, + return nmlib.notmuch_database_remove_message(self._db, filename) def find_message(self, msgid): |
