X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FKERNEL_PY%2Fkernel%2Fsyshelper.py;h=abf8b893587cdcb44b45e9ffbf21f64f02877583;hb=66b7b8c5d71f081f82f5dad2a3221a53ba9e4ee5;hp=31e079fc4aee23a67bc66549e8b867e4a386fd3c;hpb=dac5e4d5c8f771e0cedb7caa5292bc54be5ca89a;p=modules%2Fkernel.git diff --git a/src/KERNEL_PY/kernel/syshelper.py b/src/KERNEL_PY/kernel/syshelper.py index 31e079fc4..abf8b8935 100644 --- a/src/KERNEL_PY/kernel/syshelper.py +++ b/src/KERNEL_PY/kernel/syshelper.py @@ -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: