This commit is contained in:
Avram Lubkin 2023-07-06 13:24:40 -04:00 коммит произвёл Avram Lubkin
Родитель ed137aa665
Коммит c235f13204
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -22,7 +22,7 @@ def get_filenames(commit: git.Commit) -> List[str]:
Get all paths affected by a given commit
"""
if commit.parents:
if not commit.parents:
return []
diffs = commit.tree.diff(commit.parents[0])
# Sometimes a path is in A and not B but we want all filenames.