From: Scott Worley Date: Thu, 11 Jun 2020 20:24:49 +0000 (-0700) Subject: Spell "log" in "git log" correctly X-Git-Tag: 1.4~7 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/bed3218277c11d0e6092683f0a2d00225f84d8ae?ds=sidebyside Spell "log" in "git log" correctly This only ever worked because I have a git alias "lo". 😅 Hooray for proper test environment isolation. --- diff --git a/pinch.py b/pinch.py index 003ee70..24e132a 100644 --- a/pinch.py +++ b/pinch.py @@ -478,7 +478,7 @@ def git_revision_name(v: Verification, channel: Channel) -> str: process = subprocess.run(['git', '-C', git_cachedir(channel.git_repo), - 'lo', + 'log', '-n1', '--format=%ct-%h', '--abbrev=11',