We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451d8d5 commit ab25a92Copy full SHA for ab25a92
scripts/update_changelog.py
@@ -153,7 +153,7 @@ def main():
153
'<!-- CHANGELOG_PLACEHOLDER -->',
154
'<!-- CHANGELOG_PLACEHOLDER -->\n\n{}'.format(release_content),
155
)
156
- print(new_content[:800])
+ # print(new_content[:800])
157
CHANGELOG_PATH.write_text(new_content)
158
159
# Raise error if any pull request is missing a semantic version change type.
@@ -175,7 +175,7 @@ def main():
175
# print(local_repo.git.status())
176
177
print('diff:')
178
- print(local_repo.git.diff('--cached'))
+ print(local_repo.git.diff(cached=True, color='always'))
179
180
if __name__ == '__main__':
181
main()
0 commit comments