mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
notmuch: use new function Database().create_query() for 'count'
This commit is contained in:
parent
63c5a6d77d
commit
2b32acacbd
1 changed files with 2 additions and 4 deletions
6
notmuch
6
notmuch
|
@ -142,15 +142,13 @@ if __name__ == '__main__':
|
|||
print "Not implemented."
|
||||
#-------------------------------------
|
||||
elif sys.argv[1] == 'count':
|
||||
db = Database()
|
||||
if len(sys.argv) == 2:
|
||||
#no further search term
|
||||
#no further search term, count all
|
||||
querystr=''
|
||||
else:
|
||||
#mangle arguments wrapping terms with spaces in quotes
|
||||
querystr = quote_query_line(sys.argv[2:])
|
||||
logging.debug("count "+querystr)
|
||||
print(Query(db,querystr).count_messages())
|
||||
print(Database().create_query(querystr).count_messages())
|
||||
|
||||
#-------------------------------------
|
||||
elif sys.argv[1] == 'tag':
|
||||
|
|
Loading…
Reference in a new issue