]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
add commentaries
authorSerge Rehbinder <serge.rehbinder@cea.fr>
Thu, 29 Sep 2016 10:15:16 +0000 (12:15 +0200)
committerSerge Rehbinder <serge.rehbinder@cea.fr>
Thu, 29 Sep 2016 10:15:16 +0000 (12:15 +0200)
commands/base.py

index 9f1ac4fec1ed8b574be2c9c146d2f473cf53f3ea..cb407113248268d2cd2ec7a89ac3a55ec511ae0e 100644 (file)
@@ -26,6 +26,15 @@ parser.add_option('s', 'set', 'string', 'base_path',
     _('The path directory to use as base.'), None)
 
 def set_base(config, path, site_file_path, logger):
+    """ Edit the site.pyconf file and change the base path
+
+    :param config Config: The global configuration.    
+    :param path src.Path: The path to put in the site.pyconf file.
+    :param site_file_path Str: The path to the site.pyconf file.
+    :param logger Logger: The logger instance.
+    :return: 0 if all is OK, else 1
+    :rtype: int
+    """
     # Update the site.pyconf file
     try:
         site_pyconf_cfg = src.pyconf.Config(site_file_path)
@@ -46,6 +55,11 @@ def set_base(config, path, site_file_path, logger):
 
 
 def display_base_path(config, logger):
+    """ Display the base path
+
+    :param config Config: The global configuration.    
+    :param logger Logger: The logger instance.
+    """
     info = [(_("Base path"), config.SITE.base)]
     src.print_info(logger, info)