X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/ba596fc0a680ccf113b880d72ab873b56c13f530..88af5903f7d0c6490a236167b6e07d831fc67a62:/pinch.py diff --git a/pinch.py b/pinch.py index b761313..4c8a51f 100644 --- a/pinch.py +++ b/pinch.py @@ -482,6 +482,7 @@ def git_revision_name(v: Verification, channel: Channel) -> str: '-n1', '--format=%ct-%h', '--abbrev=11', + '--no-show-signature', channel.git_revision], stdout=subprocess.PIPE) v.result(process.returncode == 0 and process.stdout != b'') @@ -602,4 +603,5 @@ def main() -> None: args.func(args) -main() +if __name__ == '__main__': + main()