fix found by mypy

This commit is contained in:
Peter Bieringer 2024-12-24 12:10:47 +01:00
parent 0b00218d75
commit 1e8d9eda50

View file

@ -204,7 +204,7 @@ class ApplicationPartPut(ApplicationBase):
# Etag asked but item not matching: item has changed
logger.warning("Precondition failed on PUT request for %r (HTTP_IF_MATCH: %s, item has different etag: %s)", path, etag, item.etag)
return httputils.PRECONDITION_FAILED
if etag:
if item and etag:
logger.debug("Precondition passed on PUT request for %r (HTTP_IF_MATCH: %s, item has etag: %s)", path, etag, item.etag)
match = environ.get("HTTP_IF_NONE_MATCH", "") == "*"