Page MenuHomeSoftware Heritage

D1862.id6276.diff
No OneTemporary

D1862.id6276.diff

diff --git a/swh/model/model.py b/swh/model/model.py
--- a/swh/model/model.py
+++ b/swh/model/model.py
@@ -341,8 +341,10 @@
@length.validator
def check_length(self, attribute, value):
"""Checks the length is positive."""
- if value < 0:
- raise ValueError('Length must be positive.')
+ if self.status == 'absent' and value < -1:
+ raise ValueError('Length must be positive or -1.')
+ elif self.status != 'absent' and value < 0:
+ raise ValueError('Length must be positive, unless status=absent.')
@reason.validator
def check_reason(self, attribute, value):

File Metadata

Mime Type
text/plain
Expires
Wed, Jul 2, 10:47 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3220729

Event Timeline