summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Spaeth <sebastian@sspaeth.de>2010-03-18 18:51:25 +0100
committerSebastian Spaeth <sebastian@sspaeth.de>2010-03-18 18:51:25 +0100
commit5c936f9135f4fc6874d8826c4ebd505aa1710c69 (patch)
tree48a82289d461e5f8d34ae07192312715a31d634b
parentd566ae643c0ec59157d34fe62b8aafdb1a49ef43 (diff)
mention NOTMUCH_CONFIG in the notmuch docstring
-rwxr-xr-xnotmuch7
1 files changed, 6 insertions, 1 deletions
diff --git a/notmuch b/notmuch
index 5862b9a..acebe38 100755
--- a/notmuch
+++ b/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+):(.*$)')