auth.py: tweak ReAuth required error message

Grammar fix.

Change-Id: I3fc2dd3819e0b3d6c30ea11e80d14e2d3dadaf54
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/7094080
Auto-Submit: Jiewei Qian <qjw@chromium.org>
Reviewed-by: Scott Lee <ddoman@chromium.org>
Commit-Queue: Scott Lee <ddoman@chromium.org>
This commit is contained in:
Jiewei Qian
2025-10-29 09:51:15 -07:00
committed by LUCI CQ
parent 13828a4918
commit 2939175fa6

View File

@@ -105,7 +105,8 @@ class GitReAuthRequiredError(Exception):
"""
def __init__(self):
msg = ('You have not done ReAuth. Please run and try again:\n'
msg = (
'You have not done ReAuth. Please complete ReAuth first, then try again:\n'
' %s' % self.reauth_command)
super(GitReAuthRequiredError, self).__init__(msg)