Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix yaml plugin loading on Python 3.9
You get an error trying to run this with Python 3.9 and latest pip install: ``` $ pptop <PID> load() missing 1 required positional argument: 'Loader' ``` Since the PyYAML library [API changed](yaml/pyyaml#576), we need to use `safe_load` (which should be the default anyways).
- Loading branch information