10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-26 07:02:14 +02:00

Orthograph in qp_install

This commit is contained in:
Thomas Applencourt 2015-06-25 10:22:19 +02:00
parent ff8746c269
commit bc6784c92a

View File

@ -5,12 +5,12 @@ Usage:
qp_install_module.py create -n <name> [<children_module>...] qp_install_module.py create -n <name> [<children_module>...]
qp_install_module.py download -n <name> [<path_folder>...] qp_install_module.py download -n <name> [<path_folder>...]
qp_install_module.py install <name>... qp_install_module.py install <name>...
qp_install_module.py list (--installed|--avalaible-local) qp_install_module.py list (--installed | --available-local)
qp_install_module.py uninstall <name>... [--and_ancestor] qp_install_module.py uninstall <name>... [--and_ancestor]
Options: Options:
list: List all the module avalaible list: List all the module available
create: Create a new module create: Create a new module
""" """
@ -22,7 +22,7 @@ try:
from module_handler import ModuleHandler, get_dict_child from module_handler import ModuleHandler, get_dict_child
from module_handler import get_l_module_descendant from module_handler import get_l_module_descendant
from update_README import Doc_key, Needed_key from update_README import Doc_key, Needed_key
from qp_path import QP_ROOT, QP_SRC, QP_PLUGINS from qp_path import QP_SRC, QP_PLUGINS
except ImportError: except ImportError:
print "source .quantum_package.rc" print "source .quantum_package.rc"
@ -66,7 +66,7 @@ if __name__ == '__main__':
if arguments["--installed"]: if arguments["--installed"]:
l_repository = [QP_SRC] l_repository = [QP_SRC]
elif arguments["--avalaible-local"]: elif arguments["--available-local"]:
l_repository = [QP_PLUGINS] l_repository = [QP_PLUGINS]
m_instance = ModuleHandler(l_repository) m_instance = ModuleHandler(l_repository)
@ -87,7 +87,7 @@ if __name__ == '__main__':
for children in l_children: for children in l_children:
if children not in m_instance.dict_descendant: if children not in m_instance.dict_descendant:
print "This module ({0}) is not a valide module.".format(children) print "This module ({0}) is not a valide module.".format(children)
print "Run `list` flag for the list of module avalaible" print "Run `list` flag for the list of module available"
print "Maybe you need to install some module first" print "Maybe you need to install some module first"
print "Aborting..." print "Aborting..."
sys.exit(1) sys.exit(1)