diff --git a/framework/subsystems/ogsmd/modems/abstract/mediator.py b/framework/subsystems/ogsmd/modems/abstract/mediator.py
index d0b38fe..20c875c 100644
|
a
|
b
|
class SimRetrieveMessage( SimMediator ): |
| 705 | 705 | if line.startswith( "+CMGR" ): |
| 706 | 706 | #print "line is header line" |
| 707 | 707 | header = const.PAT_SMS_PDU_HEADER_SINGLE.match( self._rightHandSide(line) ) |
| 708 | | status = const.SMS_PDU_STATUS_OUT[header.groupdict()["status"]] |
| | 708 | status = const.SMS_PDU_STATUS_OUT[int(header.groupdict()["status"])] |
| 709 | 709 | if status <= 1: |
| 710 | 710 | dir = "MT" |
| 711 | 711 | else: |