summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@splat.cc>2020-04-15 20:47:36 +0200
committerBill Nottingham <notting@splat.cc>2020-04-15 21:00:11 +0200
commit8e3931de37ca56521f83c126926d063b4ae671b6 (patch)
tree87e152de26180b438ece605979b1a642b3fe615e
parentMerge pull request #6562 from AlexSCorey/6333-SurveyCleanUp (diff)
downloadawx-8e3931de37ca56521f83c126926d063b4ae671b6.tar.xz
awx-8e3931de37ca56521f83c126926d063b4ae671b6.zip
Remove 'rampart' from a user-facing string.
-rw-r--r--awx/main/migrations/0006_v320_release.py2
-rw-r--r--awx/main/migrations/0032_v330_polymorphic_delete.py2
-rw-r--r--awx/main/models/unified_jobs.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/awx/main/migrations/0006_v320_release.py b/awx/main/migrations/0006_v320_release.py
index d5712f8e0a..69b95f03e7 100644
--- a/awx/main/migrations/0006_v320_release.py
+++ b/awx/main/migrations/0006_v320_release.py
@@ -464,7 +464,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='unifiedjob',
name='instance_group',
- field=models.ForeignKey(on_delete=models.SET_NULL, default=None, blank=True, to='main.InstanceGroup', help_text='The Rampart/Instance group the job was run under', null=True),
+ field=models.ForeignKey(on_delete=models.SET_NULL, default=None, blank=True, to='main.InstanceGroup', help_text='The Instance group the job was run under', null=True),
),
migrations.AddField(
model_name='unifiedjobtemplate',
diff --git a/awx/main/migrations/0032_v330_polymorphic_delete.py b/awx/main/migrations/0032_v330_polymorphic_delete.py
index dd3d6a769f..da351240d8 100644
--- a/awx/main/migrations/0032_v330_polymorphic_delete.py
+++ b/awx/main/migrations/0032_v330_polymorphic_delete.py
@@ -16,6 +16,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='unifiedjob',
name='instance_group',
- field=models.ForeignKey(blank=True, default=None, help_text='The Rampart/Instance group the job was run under', null=True, on_delete=awx.main.utils.polymorphic.SET_NULL, to='main.InstanceGroup'),
+ field=models.ForeignKey(blank=True, default=None, help_text='The Instance group the job was run under', null=True, on_delete=awx.main.utils.polymorphic.SET_NULL, to='main.InstanceGroup'),
),
]
diff --git a/awx/main/models/unified_jobs.py b/awx/main/models/unified_jobs.py
index 9702340e34..70fd0e004d 100644
--- a/awx/main/models/unified_jobs.py
+++ b/awx/main/models/unified_jobs.py
@@ -707,7 +707,7 @@ class UnifiedJob(PolymorphicModel, PasswordFieldsModel, CommonModelNameNotUnique
null=True,
default=None,
on_delete=polymorphic.SET_NULL,
- help_text=_('The Rampart/Instance group the job was run under'),
+ help_text=_('The Instance group the job was run under'),
)
organization = models.ForeignKey(
'Organization',