1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Updated _schedule_at to use local time when _interval is set (#12006)

* updated _schedule_at to use local time when _interval is set

* updated schedule_at to use local time when interval is set
This commit is contained in:
Abhimanyu Saharan
2023-03-28 19:49:18 +05:30
committed by GitHub
parent ad03061edf
commit 1d2335d578
2 changed files with 8 additions and 4 deletions

View File

@@ -52,7 +52,7 @@ class ScriptForm(BootstrapMixin, forms.Form):
# When interval is used without schedule at, raise an exception
if self.cleaned_data['_interval'] and not scheduled_time:
raise forms.ValidationError(_('Scheduled time must be set when recurs is used.'))
self.cleaned_data['_schedule_at'] = local_now()
return self.cleaned_data