diff options
| author | David Bremner <david@tethera.net> | 2017-03-28 08:09:03 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-04-01 21:07:39 -0300 |
| commit | 83dffdb25192e482ab25742e3cf4608c20441b0a (patch) | |
| tree | 26d3640dfd3c1713b084def58f5e6ff5f90f7670 | |
| parent | 8ef0d05ad77db68044e437e939c60bed07e169f1 (diff) | |
cli/dump: fix bug in dump header
Fix copy paste error.
(cherry picked from commit 1f3c7916f82774cacbfbb0fbc9d0e0aaae9399b3)
(changes to missing test dropped)
| -rw-r--r-- | notmuch-dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-dump.c b/notmuch-dump.c index e7965cea..0bb946f8 100644 --- a/notmuch-dump.c +++ b/notmuch-dump.c @@ -84,7 +84,7 @@ print_dump_header (gzFile output, int output_format, int include) sep = ","; } if (include & DUMP_INCLUDE_TAGS) { - gzprintf (output, "%sproperties", sep); + gzprintf (output, "%stags", sep); } gzputs (output, "\n"); } |
