Skip to content

Commit

Permalink
Merge pull request #33 from perlpunk/fix-reminder-option
Browse files Browse the repository at this point in the history
Fix logic for --reminder-comment-on-issues
  • Loading branch information
kalikiana authored Mar 19, 2024
2 parents b7e0fb9 + 0258a45 commit 0d75835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backlogger.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def trigger_webhook(state, bad_queries):
parser.add_argument(
"--output", choices=["markdown", "influxdb"], default="markdown"
)
parser.add_argument("--reminder-comment-on-issues", action="store_false")
parser.add_argument("--reminder-comment-on-issues", action="store_true")
parser.add_argument("--exit-code", action="store_true")
switches = parser.parse_args()
try:
Expand Down

0 comments on commit 0d75835

Please sign in to comment.