From 9f673f3cf866d114edc77080cd9f9e266d403c14 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Sun, 25 Oct 2009 09:20:13 -0700
Subject: [PATCH] notmuch dump: Eliminate extra space in error message.

Little details can make big impressions.
---
 notmuch.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/notmuch.c b/notmuch.c
index f16192fb..46c3c63b 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -818,7 +818,8 @@ restore_command (int argc, char *argv[])
 				 notmuch_status_to_string (status));
 		    }
 		} else {
-		    fprintf (stderr, "%s ", tag);
+		    fprintf (stderr, "%s%s",
+			     tag == tags ? "" : " ", tag);
 		}
 	    }
 
-- 
2.45.2