From f55ff7e7dcea67f544050c4a9508b3d1764d7c69 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Tue, 22 Apr 2014 13:15:58 -0700
Subject: [PATCH] Drop the --get-query option

This would make sense when the configuration file is tucked away
inside some secret git repository, but when the configuration file
must be explicitly provided to the script, it doesn't seem that
useful.
---
 notmuch-to-html | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/notmuch-to-html b/notmuch-to-html
index edf5c97..5aba2a5 100755
--- a/notmuch-to-html
+++ b/notmuch-to-html
@@ -245,8 +245,6 @@ parser.add_argument('--text', help='output plain text format',
                     action='store_true')
 parser.add_argument('--list-views', help='list views',
                     action='store_true')
-parser.add_argument('--get-query', help='get query for view',
-                    metavar='VIEW')
 
 args = parser.parse_args()
 
@@ -310,11 +308,6 @@ if args.list_views:
     for view in config['views']:
         print(view['title'])
     sys.exit(0)
-elif args.get_query != None:
-    for view in config['views']:
-        if args.get_query == view['title']:
-            print(' and '.join(view['query']))
-    sys.exit(0)
 else:
     # only import notmuch if needed
     import notmuch
-- 
2.45.2