summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--glucometerutils/support/freestyle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glucometerutils/support/freestyle.py b/glucometerutils/support/freestyle.py
index 5b441ff..c7dbdb9 100644
--- a/glucometerutils/support/freestyle.py
+++ b/glucometerutils/support/freestyle.py
@@ -277,7 +277,7 @@ class FreeStyleHidDevice(hiddevice.HidDevice):
message = self._send_text_command(command)
logging.debug('Received multirecord message:\n%s', message)
if message == "Log Empty\r\n":
- return ()
+ return iter(())
match = _MULTIRECORDS_FORMAT.search(message)
if not match: