From 17d42dd500b06196b70af99e05e9d0fffaf3f38e Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 9 Apr 2020 22:55:01 -0700 Subject: [PATCH] Formatting --- pinch.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pinch.py b/pinch.py index 774f5f1..b3f65c6 100644 --- a/pinch.py +++ b/pinch.py @@ -243,7 +243,9 @@ def git_fetch(v: Verification, channel: Channel) -> None: have_rev = process.returncode == 0 if not have_rev: - v.status('Fetching ref "%s" from %s' % (channel.git_ref, channel.git_repo)) + v.status( + 'Fetching ref "%s" from %s' % + (channel.git_ref, channel.git_repo)) # We don't use --force here because we want to abort and freak out if forced # updates are happening. process = subprocess.run(['git', @@ -279,7 +281,9 @@ def git_fetch(v: Verification, channel: Channel) -> None: v.result(process.returncode == 0) if hasattr(channel, 'old_git_revision'): - v.status('Verifying rev is an ancestor of previous rev %s' % channel.old_git_revision) + v.status( + 'Verifying rev is an ancestor of previous rev %s' % + channel.old_git_revision) process = subprocess.run(['git', '-C', channel.git_cachedir, -- 2.44.1