Skip to content

Commit dfc615d

Browse files
committed
Remove outdated information about GitHub permission error
1 parent a215d5f commit dfc615d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/github.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,11 @@ fn handle_error_response(app: &App, error: &reqwest::Error) -> Box<dyn AppError>
3838
match error.status() {
3939
Some(Status::UNAUTHORIZED) | Some(Status::FORBIDDEN) => cargo_err(&format!(
4040
"It looks like you don't have permission \
41-
to query a necessary property from Github \
41+
to query a necessary property from GitHub \
4242
to complete this request. \
4343
You may need to re-authenticate on \
4444
crates.io to grant permission to read \
45-
github org memberships. Just go to \
46-
https://{}/login",
47-
app.config.domain_name,
45+
GitHub org memberships."
4846
)),
4947
Some(Status::NOT_FOUND) => not_found(),
5048
_ => internal(&format_args!(

0 commit comments

Comments
 (0)