Salome HOME
Merge branch 'master' into V9_dev
[modules/kernel.git] / src / KERNEL_PY / kernel / syshelper.py
index 31e079fc4aee23a67bc66549e8b867e4a386fd3c..abf8b893587cdcb44b45e9ffbf21f64f02877583 100644 (file)
@@ -55,9 +55,7 @@ def walktree(rootpath, callback, **kwargs):
     calling the callback function for each regular file
     '''
     for f in os.listdir(rootpath):
-        print(f)
         pathname = os.path.join(rootpath, f)
-        print(pathname)
         try:
             mode = os.stat(pathname)[ST_MODE]
         except OSError as e: