Skip to content

Commit 7b3a9c2

Browse files
authored
Avoid obfuscating pyx tokens in uv auth token output (#16345)
1 parent de9f299 commit 7b3a9c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/uv/src/commands/auth/token.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ async fn pyx_refresh(store: &PyxTokenStore, client: &BaseClient, printer: Printe
130130
}
131131
};
132132

133-
writeln!(printer.stdout(), "{}", token.cyan())?;
133+
writeln!(printer.stdout(), "{}", token.as_str().cyan())?;
134134
Ok(())
135135
}

0 commit comments

Comments
 (0)