Merge "Add missing "process_name" argument on Windows"

This commit is contained in:
Zuul 2020-11-19 10:25:54 +00:00 committed by Gerrit Code Review
commit dab45b14f5
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ def process_is_running(pid):
return _get_wmi_process(pid) is not None
def pid_invoked_with_cmdline(pid, expected_cmd):
def pid_invoked_with_cmdline(pid, expected_cmd, process_name=None):
process = _get_wmi_process(pid)
if not process:
return False