Skip to content
Snippets Groups Projects
Commit 36f55c02 authored by Fabrice Le Goff's avatar Fabrice Le Goff
Browse files

fix wrong filename in critical log message

parent 4154365c
No related tags found
No related merge requests found
Pipeline #498323 passed
......@@ -141,7 +141,7 @@ class CopyThread(threading.Thread):
if exc.errno == errno.ENOENT:
# The file has been removed by an external cause.
# This is bad but this is not a reason to crash.
self.logger.critical('error getting local file size %s: not present (deleted by external cause)', copyfile[0] + Constants.tobecopied_ext)
self.logger.critical('error getting local file size %s: not present (deleted by external cause)', copyfile[0])
# delete associated file (ignoring errors)
try:
os.remove(copyfile[0] + Constants.tobecopied_ext)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment