From 99699dc78e650db60f5f060aff8469cd3738f5d9 Mon Sep 17 00:00:00 2001 From: William Gulian Date: Fri, 17 Feb 2017 18:47:35 -0500 Subject: [PATCH] Passthrough adb's stderr to the terminal. --- pidcat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pidcat.py b/pidcat.py index 826ad15..efaa078 100755 --- a/pidcat.py +++ b/pidcat.py @@ -196,7 +196,7 @@ class FakeStdinProcess(): return None if sys.stdin.isatty(): - adb = subprocess.Popen(adb_command, stdin=PIPE, stdout=PIPE, stderr=PIPE) + adb = subprocess.Popen(adb_command, stdin=PIPE, stdout=PIPE) else: adb = FakeStdinProcess() pids = set()