Commit 28a7b646 authored by Arnaud Fontaine's avatar Arnaud Fontaine

ERP5ShortMessage: Fix undefined variables.

parent db78e1fa
...@@ -203,7 +203,7 @@ class EssendexGateway(XMLObject): ...@@ -203,7 +203,7 @@ class EssendexGateway(XMLObject):
raise SMSGatewayError, urllib.unquote(result.get('Message', "Impossible to get the message status")) raise SMSGatewayError, urllib.unquote(result.get('Message', "Impossible to get the message status"))
security.declarePublic('receive') security.declarePublic('receive')
def receive(self,REQUEST): def receive(self, REQUEST, **kw):
"""Receive push notification""" """Receive push notification"""
#XML is stored is BODY of request #XML is stored is BODY of request
...@@ -328,7 +328,7 @@ class EssendexGateway(XMLObject): ...@@ -328,7 +328,7 @@ class EssendexGateway(XMLObject):
if result['Result'] == "OK": if result['Result'] == "OK":
#Push all message #Push all message
type_mapping = {'Text': 'text/plain'} type_mapping = {'Text': 'text/plain'}
now == DateTime() now = DateTime()
for key, value in result.items(): for key, value in result.items():
if type(key) == int: if type(key) == int:
reception_date = self._parseDate(value['ReceivedAt']) reception_date = self._parseDate(value['ReceivedAt'])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment