From f2cec03900749b5d147128c5a17c2fdf2b223e5b Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Wed, 17 Oct 2018 16:34:24 -0400 Subject: [PATCH] fix typo in length --- awx/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/views.py b/awx/api/views.py index 0b4da2f21d..d8b66e0cca 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -4339,7 +4339,7 @@ class JobRelaunch(RetrieveAPIView): if limit_length > 1024: return Response({'limit': _( 'Cannot relaunch because the limit length {limit_length} exceeds the max of {limit_max}.' - ).format(limit_length=limit_lengh, limit_max=1024)}, status=status.HTTP_400_BAD_REQUEST) + ).format(limit_length=limit_length, limit_max=1024)}, status=status.HTTP_400_BAD_REQUEST) new_job = obj.copy_unified_job(**copy_kwargs) result = new_job.signal_start(**serializer.validated_data['credential_passwords'])