Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utils/update_checkout/tests/test_update_worktree.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

import os

from scheme_mock import call_quietly

from . import scheme_mock
from .scheme_mock import call_quietly


WORKTREE_NAME = "feature"

Expand Down
2 changes: 1 addition & 1 deletion utils/update_checkout/update_checkout/update_checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def update_single_repository(pool_args):
result = shell.run(['git', 'rev-parse', checkout_target])
revision = result[0].strip()
shell.run(['git', 'checkout', revision], echo=True)
except Exception as e:
except Exception:
raise originalException

# It's important that we checkout, fetch, and rebase, in order.
Expand Down