Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Stop mentioning user "9001" when priority limit is reached. #132

Merged
merged 1 commit into from
Aug 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homu/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def parse_commands(body, username, repo_cfg, state, my_username, db, states,
if pvalue > global_cfg['max_priority']:
if realtime:
state.add_comment(
':stop_sign: Priority higher than @{} is ignored.'
':stop_sign: Priority higher than {} is ignored.'
.format(global_cfg['max_priority'])
)
continue
Expand Down