|
@@ -49,7 +49,7 @@ class LoginRequiredError(Exception):
|
|
"""Interaction with the user is required to authenticate."""
|
|
"""Interaction with the user is required to authenticate."""
|
|
def __init__(self, scopes=OAUTH_SCOPE_EMAIL):
|
|
def __init__(self, scopes=OAUTH_SCOPE_EMAIL):
|
|
msg = ('You are not logged in. Please login first by running:\n'
|
|
msg = ('You are not logged in. Please login first by running:\n'
|
|
- ' luci-auth login -scopes %s' % scopes)
|
|
|
|
|
|
+ ' luci-auth login -scopes "%s"' % scopes)
|
|
super(LoginRequiredError, self).__init__(msg)
|
|
super(LoginRequiredError, self).__init__(msg)
|
|
|
|
|
|
|
|
|