Skip to content

Commit d9e4b08

Browse files
mbyrnepr2woodruffw
andauthored
Include the f where needed in some f-strings. (#1225)
Co-authored-by: William Woodruff <william@yossarian.net>
1 parent aa3a910 commit d9e4b08

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

changelog/1224.bugfix.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix a couple of incorrectly rendered error messages.

tests/test_sdist.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,10 @@ def test_pkg_info_not_regular_file(tmp_path):
141141
},
142142
)
143143

144-
with pytest.raises(exceptions.InvalidDistribution, match="PKG-INFO is not a reg"):
144+
with pytest.raises(
145+
exceptions.InvalidDistribution,
146+
match=r"^PKG-INFO is not a reg.*test-1.2.3.tar.gz$",
147+
):
145148
sdist.SDist(str(filepath)).read()
146149

147150

@@ -162,7 +165,10 @@ def test_multiple_top_level(archive_format, tmp_path):
162165
},
163166
)
164167

165-
with pytest.raises(exceptions.InvalidDistribution, match="Too many top-level"):
168+
with pytest.raises(
169+
exceptions.InvalidDistribution,
170+
match=r"^Too many top-level.*test-1.2.3.(tar.gz|zip)$",
171+
):
166172
sdist.SDist(str(filepath)).read()
167173

168174

twine/sdist.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ def read(self) -> bytes:
4040
root = os.path.commonpath(sdist.getnames())
4141
if root in {".", "/", ""}:
4242
raise exceptions.InvalidDistribution(
43-
"Too many top-level members in sdist archive: {self.filename}"
43+
f"Too many top-level members in sdist archive: {self.filename}"
4444
)
4545
# ...containing the package metadata in a ``PKG-INFO`` file.
4646
with suppress(KeyError):
4747
member = sdist.getmember(root.rstrip("/") + "/PKG-INFO")
4848
if not member.isfile():
4949
raise exceptions.InvalidDistribution(
50-
"PKG-INFO is not a regular file: {self.filename}"
50+
f"PKG-INFO is not a regular file: {self.filename}"
5151
)
5252
fd = sdist.extractfile(member)
5353
assert fd is not None, "for mypy"
@@ -69,7 +69,7 @@ def read(self) -> bytes:
6969
root = os.path.commonpath(sdist.namelist())
7070
if root in {".", "/", ""}:
7171
raise exceptions.InvalidDistribution(
72-
"Too many top-level members in sdist archive: {self.filename}"
72+
f"Too many top-level members in sdist archive: {self.filename}"
7373
)
7474
# ...containing the package metadata in a ``PKG-INFO`` file.
7575
with suppress(KeyError):

0 commit comments

Comments
 (0)