From f7502eed2fefb3a710bde3227d95791c2104fdbc Mon Sep 17 00:00:00 2001 From: beeankha Date: Wed, 24 Jul 2019 08:59:32 -0400 Subject: [PATCH] Correct the comment in migration file --- awx/main/migrations/0082_v360_webhook_http_method.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/awx/main/migrations/0082_v360_webhook_http_method.py b/awx/main/migrations/0082_v360_webhook_http_method.py index 3e81cfe4a9..3dc93ff970 100644 --- a/awx/main/migrations/0082_v360_webhook_http_method.py +++ b/awx/main/migrations/0082_v360_webhook_http_method.py @@ -5,9 +5,8 @@ from django.db import migrations def add_webhook_notification_template_fields(apps, schema_editor): - # loop over all existing webhook notification templates - # and make sure they have the new "http_method", "username" - # and "password" fields + # loop over all existing webhook notification templates and make + # sure they have the new "http_method" field filled in with "POST" NotificationTemplate = apps.get_model('main', 'notificationtemplate') webhooks = NotificationTemplate.objects.filter(notification_type='webhook') for w in webhooks: