Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 4ce82a4

Browse files
committed
fix url for access tokens
1 parent 5629d1e commit 4ce82a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure_cmd_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ please type: "y" to open the browser or "n" to continue: Email: Account Key: Suc
3131
ensure.DeepEqual(t,
3232
h.Err.String(),
3333
`Sorry, we do not have a user with this email and access token.
34-
Please follow instructions at https://www.parse.com/account/account_keys to generate a new access token.
34+
Please follow instructions at https://www.parse.com/account_keys to generate a new access token.
3535
`)
3636
}

login.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/skratchdot/open-golang/open"
1515
)
1616

17-
const keysURL = "https://www.parse.com/account/account_keys"
17+
const keysURL = "https://www.parse.com/account_keys"
1818

1919
type credentials struct {
2020
email string

0 commit comments

Comments
 (0)