X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=devel%2Fnmbug%2Fnotmuch-report;h=a9c2a6ec5bf4267f6a16c9ab030409c6bad3c3e3;hp=94be6717c5f6fbbf012309f50b5a12771b8154ad;hb=8492298a613e8e666d0f3054dadcb98b72a65ae4;hpb=074f45e305ca511f260153d275b37826965a61c4 diff --git a/devel/nmbug/notmuch-report b/devel/nmbug/notmuch-report index 94be6717..a9c2a6ec 100755 --- a/devel/nmbug/notmuch-report +++ b/devel/nmbug/notmuch-report @@ -17,7 +17,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see http://www.gnu.org/licenses/ . +# along with this program. If not, see https://www.gnu.org/licenses/ . """Generate text and/or HTML for one or more notmuch searches. @@ -88,7 +88,7 @@ def read_config(path=None, encoding=None): else: nmbhome = os.getenv('NMBGIT', os.path.expanduser('~/.nmbug')) branch = 'config' - filename = 'status-config.json' + filename = 'notmuch-report.json' # read only the first line from the pipe sha1_bytes = subprocess.Popen( @@ -310,14 +310,17 @@ class HtmlPage (Page): return self._slug_regexp.sub('-', string) parser = argparse.ArgumentParser(description=__doc__) -parser.add_argument('--text', help='output plain text format', - action='store_true') -parser.add_argument('--config', help='load config from given file', - metavar='PATH') -parser.add_argument('--list-views', help='list views', - action='store_true') -parser.add_argument('--get-query', help='get query for view', - metavar='VIEW') +parser.add_argument( + '--text', action='store_true', help='output plain text format') +parser.add_argument( + '--config', metavar='PATH', + help='load config from given file. ' + 'The format is described in notmuch-report.json(5).') +parser.add_argument( + '--list-views', action='store_true', help='list views') +parser.add_argument( + '--get-query', metavar='VIEW', help='get query for view') + args = parser.parse_args()