Skip to content

Commit

Permalink
- Fix proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dani Gonzalez committed Oct 24, 2017
1 parent 73c2307 commit f78b5e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hug/json_module.py
Expand Up @@ -15,7 +15,7 @@ def __call__(self, *args, **kwargs):
kwargs.pop('default', None)
kwargs.update(escape_forward_slashes=False)
return self._dumps(*args, **kwargs)
json = dumps_proxy()
json.dumps = dumps_proxy()
else:
import json
except ImportError:
Expand Down

0 comments on commit f78b5e1

Please sign in to comment.