Skip to content

Commit

Permalink
Вот же сука
Browse files Browse the repository at this point in the history
  • Loading branch information
VigersRay committed Jun 12, 2024
1 parent 13d8ff0 commit 865b5d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/automatic_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def update_changelog(changelog_file: str, pr_body: str):

if __name__ == "__main__":
if len(sys.argv) != 3:
print("Usage: update_changelog.py <pr_body> <changelog_file>")
print("Usage: update_changelog.py <changelog_file> <pr_body>")
sys.exit(1)

pr_body = sys.argv[1]
changelog_file = sys.argv[2]
changelog_file = sys.argv[1]
pr_body = sys.argv[2]
update_changelog(changelog_file, pr_body)

0 comments on commit 865b5d7

Please sign in to comment.