Stop adding periods to usernames

master
Tanner Collin 5 years ago
parent 63adb9b9a3
commit 8317a9524a
  1. 2
      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]

Loading…
Cancel
Save