mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-05 16:21:44 +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."
|
print "Not implemented."
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'count':
|
elif sys.argv[1] == 'count':
|
||||||
db = Database()
|
|
||||||
if len(sys.argv) == 2:
|
if len(sys.argv) == 2:
|
||||||
#no further search term
|
#no further search term, count all
|
||||||
querystr=''
|
querystr=''
|
||||||
else:
|
else:
|
||||||
#mangle arguments wrapping terms with spaces in quotes
|
#mangle arguments wrapping terms with spaces in quotes
|
||||||
querystr = quote_query_line(sys.argv[2:])
|
querystr = quote_query_line(sys.argv[2:])
|
||||||
logging.debug("count "+querystr)
|
print(Database().create_query(querystr).count_messages())
|
||||||
print(Query(db,querystr).count_messages())
|
|
||||||
|
|
||||||
#-------------------------------------
|
#-------------------------------------
|
||||||
elif sys.argv[1] == 'tag':
|
elif sys.argv[1] == 'tag':
|
||||||
|
|
Loading…
Reference in a new issue