Stop adding periods to usernames
This commit is contained in:
@@ -31,7 +31,7 @@ while True:
|
|||||||
c = conn.cursor()
|
c = conn.cursor()
|
||||||
|
|
||||||
for row in c.execute('select owner, group_concat(serial) from cards where active=1 group by owner'):
|
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]))
|
logging.info('Read name: {}, username: {}, cards: {}'.format(row[0], username, row[1]))
|
||||||
card_data[username] = row[1]
|
card_data[username] = row[1]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user