diff options
Diffstat (limited to 'usr/src/tools/scripts/git-pbchk.py')
-rw-r--r-- | usr/src/tools/scripts/git-pbchk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/scripts/git-pbchk.py b/usr/src/tools/scripts/git-pbchk.py index f271e28dde..fea1aa4b2e 100644 --- a/usr/src/tools/scripts/git-pbchk.py +++ b/usr/src/tools/scripts/git-pbchk.py @@ -73,7 +73,7 @@ def git(command): stdout=tmpfile, stderr=subprocess.PIPE) except OSError, e: - raise GitError("could not execute %s: %s\n" (command, e)) + raise GitError("could not execute %s: %s\n" % (command, e)) err = p.wait() if err != 0: |