Skip to content

Commit

Permalink
(marge) Fix pylint warning (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
perlun authored Dec 21, 2022
1 parent a95f1a1 commit ce56eee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion marge/single_merge_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def update_merge_request_and_accept(self, approvals):
source_repo_url=source_repo_url,
)
except GitLabRebaseResultMismatch as err:
log.info("Gitlab rebase didn't give expected result: " + err.reason)
log.info("Gitlab rebase didn't give expected result: %r", err.reason)
merge_request.comment("Someone skipped the queue! Will have to try again...")
continue

Expand Down
5 changes: 5 additions & 0 deletions requirements_frozen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ dateparser==1.0.0
flake8==3.8.4
humanize==3.2.0
idna==2.10

# Workaround for AttributeError: 'EntryPoints' object has no attribute 'get'
# More details: https://stackoverflow.com/a/73932581/227779
importlib-metadata==4.8.3

iniconfig==1.1.1
isort==5.7.0
lazy-object-proxy==1.5.2
Expand Down

0 comments on commit ce56eee

Please sign in to comment.