1
in gcm.py(in my case, located at ~/.virtualenvs/grape/lib/python3.4/site-packages/push_notifications/gcm.py)
replace
result = json.loads(_gcm_send(data, "application/json"))
to
result = json.loads(_gcm_send(data, "application/json").decode('utf8'))
Source:stackexchange.com