Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix yaml plugin loading on Python 3.9 #3

Merged
merged 1 commit into from
Nov 19, 2021
Merged

Commits on Nov 19, 2021

  1. 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).
    sgnn7 committed Nov 19, 2021
    Configuration menu
    Copy the full SHA
    d27ec37 View commit details
    Browse the repository at this point in the history