diff --git a/doorcontrol/pushcards.py b/doorcontrol/pushcards.py index 7a8b973..169be42 100644 --- a/doorcontrol/pushcards.py +++ b/doorcontrol/pushcards.py @@ -31,7 +31,7 @@ while True: c = conn.cursor() for row in c.execute('select owner, group_concat(serial) from cards where active=1 group by owner'): - username = row[0].replace(' ', '.').lower() + username = row[0].replace(' ', '').lower() logging.info('Read name: {}, username: {}, cards: {}'.format(row[0], username, row[1])) card_data[username] = row[1]