]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
fix sat package empty and developpers to developers
authorChristian Van Wambeke <christian.van-wambeke@cea.fr>
Wed, 1 Aug 2018 09:25:23 +0000 (11:25 +0200)
committerChristian Van Wambeke <christian.van-wambeke@cea.fr>
Wed, 1 Aug 2018 09:25:23 +0000 (11:25 +0200)
AllTestLauncherSat.py
commands/package.py
src/debug.py

index 8b74f2fb4d3e8d9ff2f8c950ae432bf03637b4cd..6003382ab3e0ae7d67bb982dfc10add983e14138 100755 (executable)
@@ -77,7 +77,7 @@ sys.path.insert(0, cmdsdir) # TODO remove that
 
 _user = os.environ['USER']
 # wambeke is christian at home
-_developpers = ["christian", "wambeke",] #  ...who wants
+_developers = ["christian", "wambeke",] #  ...who wants
 
 def errPrint(aStr):
   """stderr to avoid write in html or xml file log message"""
@@ -148,10 +148,10 @@ def format_exception(msg, limit=None, trace=None):
     """
     Format a stack trace and the exception information.
     as traceback.format_exception(),
-    with all traceback only if user in ._developpers
+    with all traceback only if user in ._developers
     """
     etype, value, tb = sys.exc_info()
-    if _user in _developpers:
+    if _user in _developers:
       res = "\n" + msg
       if tb:
           res += "\nTraceback (most recent call last):\n"
index bc7a3fabcad2e4c2cfb3f646d71243762b36b1b1..99c8a1fcfeac1e1ebfeb976c15689a5dc8940e4b 100644 (file)
@@ -1444,7 +1444,7 @@ Please add it in file:
         filter_function = exclude_VCS_and_extensions
 
         # Add the files to the tarfile object
-        res = add_files(tar, archive_name, d_files_to_add, logger, f_exclude=filter_function)
+        res = add_files(tar, archive_name, d_files_to_add, logger, f_exclude=filter_function)
         tar.close()
     except KeyboardInterrupt:
         logger.write(src.printcolors.printcError("\nERROR: forced interruption\n"), 1)
@@ -1461,7 +1461,7 @@ Please add it in file:
       shutil.rmtree(tmp_local_working_dir)
 
     # have to decide some time
-    DBG.tofix("make shutil.rmtree('%s') effective" % tmp_working_dir, "", DBG.isDevelopper())
+    DBG.tofix("make shutil.rmtree('%s') effective" % tmp_working_dir, "", DBG.isDeveloper())
     
     # Print again the path of the package
     logger.write("\n", 2)
index 2023d8af738310d743bc46e1331ee0c3bd7d14f5..13d7612b22c0f62e9b7026262d2d714dcba89614 100755 (executable)
@@ -61,12 +61,12 @@ _debug = [False] #support push/pop for temporary activate debug outputs
 
 _user = os.environ['USER']
 # wambeke is christian at home
-_developpers = ["christian", "wambeke", "crouzet"] # crouzet, kloss ...
+_developers = ["christian", "wambeke", "crouzet"] # crouzet, kloss ...
 
 
-def isDevelopper():
-    """if you are a developper, sometimes you want verbose traces etc."""
-    res = _user in _developpers
+def isDeveloper():
+    """if you are a developer, sometimes you want verbose traces etc."""
+    res = _user in _developers
     return res
 
 def indent(text, amount=2, ch=' '):
@@ -127,10 +127,10 @@ def format_exception(msg, limit=None, trace=None):
   """
   Format a stack trace and the exception information.
   as traceback.format_exception(), without color
-  with traceback only if (_debug) or (DBG._user in DBG._developpers)
+  with traceback only if (_debug) or (DBG._user in DBG._developers)
   """
   etype, value, tb = sys.exc_info()
-  if (_debug[-1]) or (_user in _developpers):
+  if _debug[-1] or isDeveloper():
     res = msg
     if tb:
       res += "\nTraceback (most recent call last):\n"
@@ -147,10 +147,10 @@ def format_color_exception(msg, limit=None, trace=None):
   """
   Format a stack trace and the exception information.
   as traceback.format_exception(), with color
-  with traceback only if (_debug) or (DBG._user in DBG._developpers)
+  with traceback only if _debug or isDeveloper())
   """
   etype, value, tb = sys.exc_info()
-  if (_debug[-1]) or (_user in _developpers):
+  if _debug[-1] or isDeveloper():
     res = "<red>" + msg
     if tb:
       res += "<yellow>\nTraceback (most recent call last):\n"