From 9fdc99743659bf0623275c5c9ff556989aca82b7 Mon Sep 17 00:00:00 2001 From: stevazi Date: Fri, 17 Jan 2025 23:13:42 +0100 Subject: [PATCH] problematic row --- core/filetools.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core/filetools.py b/core/filetools.py index 50b01de6..130ccab9 100755 --- a/core/filetools.py +++ b/core/filetools.py @@ -312,7 +312,6 @@ def rename(path, new_name, silent=False, strict=False, vfs=True): samba.rename(path, join(dirname(path), new_name)) else: new_name = encode(new_name, False) - logger.info(os.path.join(os.path.dirname(path), new_name), path) os.rename(path, os.path.join(os.path.dirname(path), new_name)) except: logger.error("ERROR when renaming the file: %s" % path)