We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603b94e commit f030357Copy full SHA for f030357
distutils/command/sdist.py
@@ -76,7 +76,7 @@ def checking_metadata(self) -> bool:
76
(
77
'keep-temp',
78
'k',
79
- "keep the distribution tree around after creating " + "archive file(s)",
+ "keep the distribution tree around after creating archive file(s)",
80
),
81
82
'dist-dir=',
@@ -206,8 +206,7 @@ def get_file_list(self) -> None:
206
207
if not template_exists:
208
self.warn(
209
- ("manifest template '%s' does not exist " + "(using default file list)")
210
- % self.template
+ f"manifest template '{self.template}' does not exist (using default file list)"
211
)
212
self.filelist.findall()
213
0 commit comments