mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
tweak message about image pull option
This commit is contained in:
parent
e2140ad7a8
commit
058189dfcf
@ -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.")),
|
||||
]
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user