Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit 68c8675

Browse files
committed
more usage of f-strings
1 parent e9bd3d8 commit 68c8675

File tree

5 files changed

+20
-21
lines changed

5 files changed

+20
-21
lines changed

sage_patchbot/http_post_file.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -66,20 +66,20 @@ def encode_multipart_formdata(fields, files):
6666
fields = fields.items()
6767
for (key, value) in fields:
6868
L.append(dd + BOUNDARY)
69-
L.append(by('Content-Disposition: form-data; name="{}"'.format(key)))
69+
L.append(by(f'Content-Disposition: form-data; name="{key}"'))
7070
L.append(by(''))
7171
L.append(by(value))
7272
for (key, filename, value) in files:
7373
L.append(dd + BOUNDARY)
74-
cont = 'Content-Disposition: form-data; name="{}"; filename="{}"'
75-
L.append(by(cont.format(key, filename)))
76-
L.append(by('Content-Type: {}'.format(get_content_type(filename))))
74+
cont = f'Content-Disposition: form-data; name="{key}"; filename="{filename}"'
75+
L.append(by(cont))
76+
L.append(by(f'Content-Type: {get_content_type(filename)}'))
7777
L.append(by(''))
7878
L.append(value) # here are bytes ??
7979
L.append(dd + BOUNDARY + dd)
8080
L.append(by(''))
8181
body: bytes = CRLF.join(L)
82-
content_type = 'multipart/form-data; boundary={}'.format(UTF_BOUNDARY)
82+
content_type = f'multipart/form-data; boundary={UTF_BOUNDARY}'
8383
return content_type, body
8484

8585

sage_patchbot/server/serve.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def format_git_describe(res):
385385
if res:
386386
if '-' in res:
387387
tag, commits = res.split('-')[:2]
388-
return "%s + %s commits" % (tag, commits)
388+
return f"{tag} + {commits} commits"
389389
if 'commits' in res:
390390
# old style
391391
return res
@@ -409,7 +409,7 @@ def preprocess_reports(all_t):
409409
if 'git_commit_human' not in item:
410410
item['git_commit_human'] = "%s new commits" % len(item['log'])
411411
for x in ('commit', 'base', 'merge'):
412-
field = 'git_%s_human' % x
412+
field = f'git_{x}_human'
413413
item[field] = format_git_describe(item.get(field, None))
414414
item['machine'] = band_aid_for_machine(item['machine'])
415415
if chosen_base in ('all', base_of_this_report):

sage_patchbot/trac.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def get_ticket_info_from_trac_server(ticket_id: int) -> dict[str, Any]:
102102
authors_fullnames = list(set_authors_fullnames)
103103

104104
# needed to extract the participants
105-
rss = get_url("{}/ticket/{}?format=rss".format(TRAC_URL, ticket_id))
105+
rss = get_url(f"{TRAC_URL}/ticket/{ticket_id}?format=rss")
106106

107107
return {'id': ticket_id,
108108
'title': trac_info.title,
@@ -272,7 +272,7 @@ def inplace_safe():
272272
"src/bin/sage-banner",
273273
"src/bin/sage-version.sh")):
274274
continue
275-
msg = "Unsafe file: {}".format(file)
275+
msg = f"Unsafe file: {file}"
276276
print(msg)
277277
return False
278278
return True
@@ -312,9 +312,9 @@ def pull_from_trac(sage_root, ticket_id, branch=None, force=None,
312312
return
313313
branch = info['git_branch']
314314
repo = info['git_repo']
315-
do_or_die("git fetch %s +%s:patchbot/ticket_upstream" % (repo, branch))
315+
do_or_die(f"git fetch {repo} +{branch}:patchbot/ticket_upstream")
316316
base = describe_branch('patchbot/ticket_upstream', tag_only=True)
317-
do_or_die("git rev-list --left-right --count %s..patchbot/ticket_upstream" % base)
317+
do_or_die(f"git rev-list --left-right --count {base}..patchbot/ticket_upstream")
318318
do_or_die("git branch -f patchbot/ticket_merged patchbot/base")
319319
do_or_die("git checkout patchbot/ticket_merged")
320320
try:
@@ -331,7 +331,7 @@ def pull_from_trac(sage_root, ticket_id, branch=None, force=None,
331331
# create temporary dir
332332
temp_dir = tempfile.mkdtemp(temp_build_suffix + str(ticket_id))
333333
ensure_free_space(temp_dir)
334-
do_or_die("git clone . '{}'".format(temp_dir))
334+
do_or_die("git clone . '{temp_dir}'")
335335
os.chdir(temp_dir)
336336
os.symlink(os.path.join(sage_root, "upstream"), "upstream")
337337
os.environ['SAGE_ROOT'] = temp_dir
@@ -429,7 +429,7 @@ def remote_branch(self, ticket_number: int) -> str:
429429
pull_from_trac(os.environ['SAGE_ROOT'], tick, force=True)
430430
time.sleep(1)
431431
except Exception:
432-
msg = "Error for {}".format(tick)
432+
msg = f"Error for {tick}"
433433
print(msg)
434434
traceback.print_exc()
435435
force = apply = False

sage_patchbot/trac_ticket.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,10 @@ def new(self):
119119
@property
120120
def change_action(self) -> str:
121121
if not self.old:
122-
return 'set to {change.new}'.format(change=self)
122+
return f'set to {self.new}'
123123
if not self.new:
124-
return '{change.old} deleted'.format(change=self)
125-
txt = 'changed from {change.old} to {change.new}'
126-
return txt.format(change=self)
124+
return f'{self.old} deleted'
125+
return f'changed from {self.old} to {self.new}'
127126

128127
def __repr__(self) -> str:
129128
txt = self._author + ' changed ' + self._change

sage_patchbot/util.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ def git_commit(repo: str, branch: str) -> str | None:
145145
In [16]: git_commit('/home/marlon_brando/sage', 'develop')
146146
Out[16]: '7eb8510dacf61b691664cd8f1d2e75e5d473e5a0'
147147
"""
148-
ref = "refs/heads/{}".format(branch)
148+
ref = f"refs/heads/{branch}"
149149
try:
150150
res = subprocess.check_output(["git",
151-
"--git-dir={}/.git".format(repo),
151+
f"--git-dir={repo}/.git",
152152
"show-ref",
153153
"--verify", ref],
154154
universal_newlines=True)
@@ -168,7 +168,7 @@ def branch_updates_some_package() -> bool:
168168
if not file:
169169
continue
170170
if file.startswith("build/pkgs") and file.endswith("checksums.ini"):
171-
msg = "Modified package: {}".format(file)
171+
msg = f"Modified package: {file}"
172172
print(msg)
173173
return True
174174
return False
@@ -200,7 +200,7 @@ def do_or_die(cmd: str, exn_class=Exception):
200200
print(cmd)
201201
res = os.system(cmd)
202202
if res:
203-
raise exn_class("{} {}".format(res, cmd))
203+
raise exn_class(f"{res} {cmd}")
204204

205205

206206
def comparable_version(version: str) -> list[tuple]:

0 commit comments

Comments
 (0)