Skip to content

Commit

Permalink
The default encoder should be None
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwaterworth committed May 16, 2013
1 parent ff12441 commit 3f358cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pusher/__init__.py
Expand Up @@ -47,7 +47,7 @@ def pusher_from_url(url=None):
return Pusher(**url2options(url))

class Pusher(object):
def __init__(self, app_id=None, key=None, secret=None, host=None, port=None, encoder=json):
def __init__(self, app_id=None, key=None, secret=None, host=None, port=None, encoder=None):
_globals = globals()
self.app_id = app_id or _globals['app_id']
self.key = key or _globals['key']
Expand Down

0 comments on commit 3f358cb

Please sign in to comment.