From bc98d7a1e26e049dd0514b1d74a484ff6e977461 Mon Sep 17 00:00:00 2001
From: David Edmondson <dme@dme.org>
Date: Thu, 6 Aug 2009 08:45:07 +0100
Subject: [PATCH] Remove spurious double quote from the 'To' header.

---
 newspipe.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/newspipe.py b/newspipe.py
index 179e06c..64636a6 100644
--- a/newspipe.py
+++ b/newspipe.py
@@ -1008,7 +1008,7 @@ class Item:
         else:
             subject = self.subject
 
-        to_header = ', '.join(['"%s" <%s>"' % (destinatario[0], each.strip()) for each in destinatario[1].split(',')])
+        to_header = ', '.join(['"%s" <%s>' % (destinatario[0], each.strip()) for each in destinatario[1].split(',')])
         if from_address:
             from_header = from_address
         else:
-- 
1.6.0.4

