Move comment to proper line

This commit is contained in:
Orsiris de Jong 2022-10-23 11:21:11 +02:00 committed by GitHub
parent 3c8061dbbb
commit cd5f674164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -12,8 +12,8 @@ from __future__ import print_function
__intname__ = "gammu_get_unread_sms.py"
__author__ = "Orsiris de Jong - <orsiris.dejong@netperfect.fr>"
__version__ = "2.0.0"
__build__ = "2022102001"
__version__ = "2.0.1"
__build__ = "2022102301"
__compat__ = "python2.7+"
@ -113,11 +113,10 @@ def load_sms_from_gammu(state_machine):
remaining_sms = remaining_sms - len(sms)
sms_list.append(sms)
# Concat multiSMS into list of sms that go together
except gammu.ERR_EMPTY:
logger.debug("Finished reading all messages")
# Concat multiple SMS into list of sms that go together using LinkSMS
return gammu.LinkSMS(sms_list)