yubicootp: bugfix
This commit is contained in:
parent
adc4931a57
commit
f5ece42b15
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class YubicoOTP(Cog):
|
||||||
|
|
||||||
# Turn the fields to a python dict for easier parsing
|
# Turn the fields to a python dict for easier parsing
|
||||||
datafields = resptext.strip().split("\r\n")
|
datafields = resptext.strip().split("\r\n")
|
||||||
datafields = {line[line.index("=") + 1:]: line[line.index("="):] for line in datafields}
|
datafields = {line[line.index("=") + 1]: line[:line.index("=")] for line in datafields}
|
||||||
|
|
||||||
# Verify nonce
|
# Verify nonce
|
||||||
assert datafields["nonce"] == nonce
|
assert datafields["nonce"] == nonce
|
||||||
|
|
Loading…
Reference in a new issue