diff --git a/tests/debug.py b/tests/debug.py index bb71bc97..4e2675b5 100644 --- a/tests/debug.py +++ b/tests/debug.py @@ -135,7 +135,7 @@ if __name__ == '__main__': import re print('getting pid') - command = "sudo lsof -i :%s | awk '{print $2}'" % 12910 + command = "lsof -i :%s | awk '{print $2}'" % 12910 pids = subprocess.check_output(command, shell=True) pids = pids.strip() print(pids)