From: Oleg Broytman Date: Sun, 23 Dec 2007 10:53:34 +0000 (+0000) Subject: Mark the error output from the subprocess with a prefix. X-Git-Tag: v4.5.3~248 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=d12f0f2bd47efb4c41dcd306c53d712ed3d194d7;p=bookmarks_db.git Mark the error output from the subprocess with a prefix. git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@128 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23 --- diff --git a/Robots/bkmk_rforking.py b/Robots/bkmk_rforking.py index d3d3351..3ce798b 100644 --- a/Robots/bkmk_rforking.py +++ b/Robots/bkmk_rforking.py @@ -68,7 +68,7 @@ class robot_forking(Robot): error = check_subp.readPendingErrLine() if not error: break - sys.stderr.write(error) + sys.stderr.write("(subp) " + error) except KeyboardInterrupt: return 0