notmuch dump: Eliminate extra space in error message.

Little details can make big impressions.
This commit is contained in:
Carl Worth 2009-10-25 09:20:13 -07:00
parent a8ae2cd214
commit 9f673f3cf8

View file

@ -818,7 +818,8 @@ restore_command (int argc, char *argv[])
notmuch_status_to_string (status)); notmuch_status_to_string (status));
} }
} else { } else {
fprintf (stderr, "%s ", tag); fprintf (stderr, "%s%s",
tag == tags ? "" : " ", tag);
} }
} }