gcc-changelog: Change parse_git_revisions strict argument to True.

Change the default that is used by GIT server hook and also
by git_update_version.py. Both should use True now.

contrib/ChangeLog:

	* gcc-changelog/git_repository.py: Set strict=True
	for parse_git_revisions as a default.
This commit is contained in:
Martin Liska 2020-11-04 10:57:28 +01:00
parent 092cdbd919
commit 10a50d261e
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ except ImportError:
from git_commit import GitCommit, GitInfo
def parse_git_revisions(repo_path, revisions, strict=False):
def parse_git_revisions(repo_path, revisions, strict=True):
repo = Repo(repo_path)
def commit_to_info(commit):