Skip to content

Commit

Permalink
safer parse pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Mar 20, 2024
1 parent e0a4907 commit 98c1a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/py_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 98c1a0d

Please sign in to comment.