Skip to content

Commit 7b24607

Browse files
committed
Replace u'' literal with six.text_type() for python 3.2 support
1 parent 650f520 commit 7b24607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pusher/pusher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def join_attributes(attributes):
4040
if not isinstance(attr, six.text_type):
4141
raise TypeError('Each attr should be %s' % text)
4242

43-
return u','.join(attributes)
43+
return six.text_type(',').join(attributes)
4444

4545
class Pusher(object):
4646
"""Client for the Pusher HTTP API.

0 commit comments

Comments
 (0)