Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
iarspider committed Feb 23, 2024
1 parent f42caf8 commit 733935c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion process_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,11 @@ def write_bot_cache(bot_cache, cache_comment, issue, dryRun):
print("DRY RUN: Creating technical comment with text")
print(new_body.encode("ascii", "ignore").decode())
else:
raise RuntimeError("Updated comment body too long: {0} > 65535".format(len(new_body)))
print(
"NOTICE: Updated comment body too long: {0} > 65535, cache will not be updated".format(
len(new_body)
)
)


def get_commenter_categories(commenter, comment_date):
Expand Down

0 comments on commit 733935c

Please sign in to comment.