File diff 52c0eb8e6c29 → 26ac00e8641f
www/conservancy/apps/assignment/forms.py
Show inline comments
...
 
@@ -7,7 +7,7 @@ from .terms import TERMS
 

	
 

	
 
def validate_in_past(value):
 
    if value >= timezone.now().date():
 
    if value > timezone.now().date():
 
        raise ValidationError('Enter a date in the past')