Skip to content

Commit

Permalink
send uppercase 2fa code
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlkns committed Jun 28, 2023
1 parent b3b43be commit 8250d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def _depot_downloader(self, options: list):
# Create temporary parent window to prevent error with visibility
temp = tkinter.Tk()
temp.withdraw()
code = tkinter.simpledialog.askstring(title="Code", prompt="Please enter your 2FA login code", parent=temp)
code = tkinter.simpledialog.askstring(title="Code", prompt="Please enter your 2FA login code", parent=temp).upper()
temp.destroy()

# Cancel was clicked
Expand Down

0 comments on commit 8250d5f

Please sign in to comment.