From 752653880833fb631ec3e350525d4bdb91efe290 Mon Sep 17 00:00:00 2001 From: Tomi Ollila Date: Sun, 3 Sep 2017 23:24:55 +0300 Subject: [PATCH] test: notmuch_drop_mail_headers() style update 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. --- 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.26.2