Skip to content

Commit 835f6cd

Browse files
committed
remove titlecasing
Signed-off-by: William Woodruff <[email protected]>
1 parent eb7eabf commit 835f6cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

attestations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def die(msg: str) -> NoReturn:
5757

5858

5959
def debug(msg: str):
60-
print(f"::debug::{msg.title()}", file=sys.stderr)
60+
print(f"::debug::{msg}", file=sys.stderr)
6161

6262

6363
def attest_dist(dist: Path, signer: Signer) -> None:

oidc-exchange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def die(msg: str) -> NoReturn:
121121

122122

123123
def debug(msg: str):
124-
print(f"::debug::{msg.title()}", file=sys.stderr)
124+
print(f"::debug::{msg}", file=sys.stderr)
125125

126126

127127
def get_normalized_input(name: str) -> str | None:

0 commit comments

Comments
 (0)