mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
improve coding
This commit is contained in:
parent
f0d06cbc7d
commit
605fc65584
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ class ApplicationPartPut(ApplicationBase):
|
|||
errno_e = int(errno_match.group(1))
|
||||
if errno_e == errno.ENOSPC:
|
||||
return httputils.INSUFFICIENT_STORAGE
|
||||
elif (errno_e == errno.EPERM) or (errno_e == errno.EACCES):
|
||||
elif errno_e in [errno.EPERM, errno.EACCES]:
|
||||
return httputils.FORBIDDEN
|
||||
else:
|
||||
return httputils.INTERNAL_SERVER_ERROR
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue