Bug 1904777 - Add missing changed_files argument to try_commit for push_to_lando_try after bug 1500188. r=sheehan

Differential Revision: https://phabricator.services.mozilla.com/D215193
This commit is contained in:
Mike Hommey 2024-06-28 14:32:37 +00:00
Родитель 944715792f
Коммит 4f4ba3bfad
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -419,7 +419,7 @@ def push_to_lando_try(
# Get the time when the push was initiated, not including Auth0 login time.
push_start_time = time.perf_counter()
with vcs.try_commit(commit_message) as head:
with vcs.try_commit(commit_message, changed_files) as head:
try:
base_commit, patches = get_stack_info(vcs, head)
except ValueError as exc: