[PATCH] test: notmuch_drop_mail_headers() style update

Tomi Ollila tomi.ollila at iki.fi
Sun Sep 3 13:24:55 PDT 2017


Changed "" quotes to '' as we're not supposed to dynamically
alter python program (via shell $variable expansion).

Added space to python program to match general python style.

Replaced $* with 'idiomatic' "$@" to serve as better example.
---

It seems `email` headers is not dictionary; hdr.pop(x) does
not exist, and del hdr[x] on nonexistent header does not
raise KeyError. Fine.

We use both "${@}" and "$@". IMO "${@}" is ugly when unnecessary.

 test/test-lib.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test/test-lib.sh b/test/test-lib.sh
index 09ee815d..35024649 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -509,12 +509,12 @@ NOTMUCH_DUMP_TAGS ()
 
 notmuch_drop_mail_headers ()
 {
-    $NOTMUCH_PYTHON -c "
-import email,sys
-msg=email.message_from_file(sys.stdin)
+    $NOTMUCH_PYTHON -c '
+import email, sys
+msg = email.message_from_file(sys.stdin)
 for hdr in sys.argv[1:]: del msg[hdr]
 print(msg.as_string(False))
-" $*
+' "$@"
 }
 
 notmuch_search_sanitize ()
-- 
2.13.3



More information about the notmuch mailing list