Reworded error message for better English

This commit is contained in:
David Murphy 2024-03-28 09:24:27 -06:00 committed by Daniel Wozniak
parent 9d5975f64e
commit 17fb9f6c31

View file

@ -755,7 +755,7 @@ class GitProvider:
except OSError as exc:
if exc.errno == errno.ENOENT:
# No lock file present
msg = f"Attempt to remove lock {self.url} for file ({lock_file}) which was not found to exist, exception : {exc} "
msg = f"Attempt to remove lock {self.url} for file ({lock_file}) which does not exist, exception : {exc} "
log.debug(msg)
elif exc.errno == errno.EISDIR: