diff --git a/client/py_client/client.py b/client/py_client/client.py index 67911724..d043172a 100644 --- a/client/py_client/client.py +++ b/client/py_client/client.py @@ -178,7 +178,7 @@ def list_meetups(self, cid): participants = [] while len(lines) > 0: l = lines.pop(0) - if ('MeetupRegistry' in l) or ('total' in l) or ('CSV' in l): + if ('MeetupRegistry' in l) or ('total' in l) or ('CSV:' in l): break participants.append(l.strip()) meetups.append(participants)