summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Tarleton <nick@quixey.com>2011-04-01 23:31:48 -0700
committergarnaat <mitch@garnaat.com>2011-04-02 17:48:59 -0400
commitf07e6350aff17402272b93a9f56870a19cc32de3 (patch)
treee156fa6575f5ae396bfc287d12f8c97c49263f6c
parent43fead341c2f471e5a652a1b238a159c8314bc4d (diff)
downloadboto-f07e6350aff17402272b93a9f56870a19cc32de3.tar.gz
fix one use of unicode
-rw-r--r--boto/connection.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/boto/connection.py b/boto/connection.py
index a9bf28ce..a8fb6562 100644
--- a/boto/connection.py
+++ b/boto/connection.py
@@ -63,6 +63,7 @@ try:
import queue as Queue
import http.client as httplib
import urllib.parse as urllib
+ unicode = str
except ImportError:
# Python 2.x
import Queue