mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
mention NOTMUCH_CONFIG in the notmuch docstring
This commit is contained in:
parent
d566ae643c
commit
5c936f9135
1 changed files with 6 additions and 1 deletions
7
notmuch
7
notmuch
|
@ -1,5 +1,10 @@
|
|||
#!/usr/bin/env python
|
||||
"""This is a notmuch implementation in python. It's goal is to allow running the test suite on the cnotmuch python bindings."""
|
||||
"""This is a notmuch implementation in python. It's goal is to allow running the test suite on the cnotmuch python bindings.
|
||||
|
||||
This "binary" honors the NOTMUCH_CONFIG environmen variable for reading a user's
|
||||
notmuch configuration (e.g. the database path)
|
||||
|
||||
This code is licensed under the GNU GPL v3+."""
|
||||
import sys, os, re, logging
|
||||
from cnotmuch.notmuch import Database, Query
|
||||
PREFIX=re.compile('(\w+):(.*$)')
|
||||
|
|
Loading…
Reference in a new issue