(s)
| 1420 | |
| 1421 | # Be resilient to quotes and whitespace |
| 1422 | def unwrap(s): |
| 1423 | s = s.strip() |
| 1424 | if (s.startswith('"') and s.endswith('"')) or (s.startswith("'") and s.endswith("'")): |
| 1425 | s = s[1:-1].strip() |
| 1426 | return s |
| 1427 | |
| 1428 | |
| 1429 | def list_processes_by_name(exe_full_path): |