contrib: remove extra fetch from git_update_version

Remove extra fetch call that didn't help with the issue
we had (missing object).

contrib/ChangeLog:

	* gcc-changelog/git_update_version.py: Remove extra fetch.
This commit is contained in:
Martin Liska 2022-10-07 11:35:32 +02:00
parent 8a79685989
commit fce601fd07

View File

@ -135,7 +135,7 @@ def update_current_branch(ref_name):
repo.git.add(datestamp_path)
if not args.current:
repo.index.commit('Daily bump.')
origin.fetch()
logging.info('commit is done')
if args.push:
try:
repo.git.push('origin', branch)