mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 15:36:04 -03:30
tweak message about image pull option
This commit is contained in:
@@ -16,7 +16,7 @@ class Migration(migrations.Migration):
|
||||
field=models.CharField(
|
||||
choices=[
|
||||
('always', 'Always pull container before running.'),
|
||||
('missing', 'No pull option has been selected.'),
|
||||
('missing', 'Only pull the image if not present before running.'),
|
||||
('never', 'Never pull container before running.'),
|
||||
],
|
||||
blank=True,
|
||||
|
||||
@@ -14,7 +14,7 @@ class ExecutionEnvironment(CommonModel):
|
||||
|
||||
PULL_CHOICES = [
|
||||
('always', _("Always pull container before running.")),
|
||||
('missing', _("No pull option has been selected.")),
|
||||
('missing', _("Only pull the image if not present before running.")),
|
||||
('never', _("Never pull container before running.")),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user