Stop adding periods to usernames
This commit is contained in:
parent
63adb9b9a3
commit
8317a9524a
|
@ -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…
Reference in New Issue
Block a user