Skip to content

Commit 2de3e26

Browse files
authored
[BitBucket] Replace fstring with format function. (atlassian-api#830)
1 parent e5bff44 commit 2de3e26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/bitbucket/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2638,7 +2638,7 @@ def download_repo_archive(
26382638
:param prefix: string: Optional, a prefix to apply to all entries in the streamed archive; if the supplied prefix does not end with a trailing /, one will be added automatically
26392639
:param chunk_size: int: Optional, download chunk size. Defeault is 128
26402640
"""
2641-
url = f"{self._url_repo(project_key, repository_slug)}/archive"
2641+
url = "{}/archive".format(self._url_repo(project_key, repository_slug))
26422642
params = {}
26432643
if at is not None:
26442644
params["at"] = at

0 commit comments

Comments
 (0)