Skip to content

Commit e7b7691

Browse files
committed
Added a missing string format parmameter.
- Legacy-Id: 12116
1 parent f6ffc1c commit e7b7691

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/pipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def pipe(cmd, str=None):
2424
err = pipe.childerr.read()
2525
break
2626
if len(out) >= MAX:
27-
err = "Output exceeds %s bytes and has been truncated"
27+
err = "Output exceeds %s bytes and has been truncated" % MAX
2828
break
2929

3030
return (code, out, err)

0 commit comments

Comments
 (0)