Commit 4f17e865 authored by Mccaskey, Alex's avatar Mccaskey, Alex
Browse files

setup to install PyYAML, not yaml, if not present

parent c19cc2b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ def install_plugin(url, config_name=None):
                                             None else " with {} config".format(config_name)))

    # Import necessary modules, install if not available
    yaml = import_or_install('yaml')
    yaml = import_or_install('yaml', 'PyYAML')
    shutil = import_or_install('shutil')
    distro = import_or_install('distro')
    git = import_or_install('git', 'gitpython')