Skip to content
This repository was archived by the owner on Apr 20, 2025. It is now read-only.

Commit 95f3f9d

Browse files
hugovksybrenstuvel
authored andcommitted
Revert replacing % with .format
1 parent 6b3c23d commit 95f3f9d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

rsa/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def parse_cli(self) -> typing.Tuple[optparse.Values, typing.List[str]]:
178178
def read_key(self, filename: str, keyform: str) -> rsa.key.AbstractKey:
179179
"""Reads a public or private key."""
180180

181-
print("Reading {} key from {}".format(self.keyname, filename), file=sys.stderr)
181+
print("Reading %s key from %s" % (self.keyname, filename), file=sys.stderr)
182182
with open(filename, "rb") as keyfile:
183183
keydata = keyfile.read()
184184

rsa/key.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def _assert_format_exists(
140140
except KeyError as ex:
141141
formats = ", ".join(sorted(methods.keys()))
142142
raise ValueError(
143-
"Unsupported format: {!r}, try one of {}".format(file_format, formats)
143+
"Unsupported format: %r, try one of %s" % (file_format, formats)
144144
) from ex
145145

146146
def save_pkcs1(self, format: str = "PEM") -> bytes:

rsa/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def private_to_public() -> None:
6767
# Read the input data
6868
if cli.infilename:
6969
print(
70-
"Reading private key from {} in {} format".format(cli.infilename, cli.inform),
70+
"Reading private key from %s in %s format" % (cli.infilename, cli.inform),
7171
file=sys.stderr,
7272
)
7373
with open(cli.infilename, "rb") as infile:
@@ -87,7 +87,7 @@ def private_to_public() -> None:
8787

8888
if cli.outfilename:
8989
print(
90-
"Writing public key to {} in {} format".format(cli.outfilename, cli.outform),
90+
"Writing public key to %s in %s format" % (cli.outfilename, cli.outform),
9191
file=sys.stderr,
9292
)
9393
with open(cli.outfilename, "wb") as outfile:

0 commit comments

Comments
 (0)