From e7b76917aea3bf236820be191eb4c08187189cf6 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 11 Oct 2016 12:53:14 +0000 Subject: [PATCH] Added a missing string format parmameter. - Legacy-Id: 12116 --- ietf/utils/pipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/utils/pipe.py b/ietf/utils/pipe.py index d4f7c6087..845bc901e 100644 --- a/ietf/utils/pipe.py +++ b/ietf/utils/pipe.py @@ -24,7 +24,7 @@ def pipe(cmd, str=None): err = pipe.childerr.read() break if len(out) >= MAX: - err = "Output exceeds %s bytes and has been truncated" + err = "Output exceeds %s bytes and has been truncated" % MAX break return (code, out, err)