Skip to content

Commit

Permalink
Merge pull request #6 from masuidrive/fix-small-bug
Browse files Browse the repository at this point in the history
Fixed to fail post summary to Slack
  • Loading branch information
masuidrive authored Mar 6, 2023
2 parents c5e81b6 + a6f6055 commit f54c901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion summarizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def runner():
if DEBUG:
print("\n".join(result_text))
else:
retry(slack_client.postSummary(title + "\n".join(result_text)),
retry(lambda: slack_client.postSummary(title + "\n".join(result_text)),
exception=SlackApiError)


Expand Down

0 comments on commit f54c901

Please sign in to comment.