Handle long keyid
This commit is contained in:
parent
7002341583
commit
5d2d4ff451
1 changed files with 9 additions and 8 deletions
3
login.py
3
login.py
|
@ -9,10 +9,11 @@ LOGIN_FIELD = 2
|
|||
EMAILADDR_FIELD = 3
|
||||
|
||||
|
||||
def check(cnt, file):
|
||||
def check(cnt, *files):
|
||||
data, uname = cnt
|
||||
username, address = parseaddr(uname)
|
||||
|
||||
for file in files:
|
||||
with open(file, encoding='utf-8') as fd:
|
||||
people = csv.reader(fd)
|
||||
for p in people:
|
||||
|
|
Reference in a new issue