git-send-email: remove debugging output.

rfc2047 unquoter spitted out an annoying "- unquoted" which was
added during debugging but I forgot to remove.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2007-01-30 02:22:37 -08:00
Родитель f8306418a6
Коммит 3740b04f6c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -408,7 +408,7 @@ sub unquote_rfc2047 {
s/_/ /g;
s/=([0-9A-F]{2})/chr(hex($1))/eg;
}
return "$_ - unquoted";
return "$_";
}
sub send_message