From c3a3d9072b43d58729f92d788728e5857566dca6 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 3 Oct 2012 17:53:34 -0400 Subject: [PATCH] Fix zephyr mirror unicode issues, hopefully once and for all. This code successfully sends every message in our corpus of past zephyrs. (imported from commit 14d42ca9288e2a218eaad880691d6bd213a045ce) --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index 9c59ff8..36d1377 100644 --- a/common.py +++ b/common.py @@ -24,7 +24,7 @@ class HumbugAPI(): def send_message(self, submit_hash): submit_hash["email"] = self.email submit_hash["api-key"] = self.api_key - submit_data = urllib.urlencode([(k, v.encode('utf-8')) for k,v in submit_hash.items()]) + submit_data = urllib.urlencode([(k, v) for k,v in submit_hash.items()]) res = self.browser.open(self.base_url + "/api/v1/send_message", submit_data) return simplejson.loads(res.read())