From 31632cad9b74225b39cb66ffc8f35d57e9585591 Mon Sep 17 00:00:00 2001 From: michel Date: Mon, 29 Jan 2018 23:06:31 +0100 Subject: [PATCH] [TMP] msg --- golem_activity/models/golem_activity.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/golem_activity/models/golem_activity.py b/golem_activity/models/golem_activity.py index b9a26e8..cc749aa 100644 --- a/golem_activity/models/golem_activity.py +++ b/golem_activity/models/golem_activity.py @@ -103,11 +103,11 @@ class GolemActivity(models.Model): raise models.ValidationError(_('Start of the period cannot be ' 'after end of the period.')) if activity.season_id.date_start > activity.date_start < activity.season_id.date_end: - msg = _(u'Start of the period is in range of an ' + msg = _(u'Start of the activity is not in range of an ' 'existing period.') raise models.ValidationError(msg) if activity.season_id.date_end < activity.date_stop > activity.season_id.date_start: - msg = _(u'End of the period is in range of an ' + msg = _(u'End of the activity is not in range of an ' 'existing period.') raise models.ValidationError(msg)