diff options
author | W. Trevor King <wking@drexel.edu> | 2009-11-30 06:26:09 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-11-30 06:26:09 -0500 |
commit | 8773e0e95758539addbfbcd11e5f37a2648c6e58 (patch) | |
tree | ddc704c24ce92ad22d41b787b97c63104dc50c40 | |
parent | ef748431936015a9d914255db0dd20f2f8e1c426 (diff) | |
download | bugseverywhere-8773e0e95758539addbfbcd11e5f37a2648c6e58.tar.gz |
Generalized doctest string in subproc.py
-rw-r--r-- | libbe/subproc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/subproc.py b/libbe/subproc.py index 3e58271..fe88206 100644 --- a/libbe/subproc.py +++ b/libbe/subproc.py @@ -96,7 +96,7 @@ class Pipe (object): >>> p.statuses [1, 0] >>> p.stderrs # doctest: +ELLIPSIS - ["find: `...': Permission denied\\n...", ''] + [...find: ...: Permission denied..., ''] """ def __init__(self, cmds, stdin=None): # spawn processes |