tweak message about image pull option

This commit is contained in:
Elijah DeLee 2021-05-24 17:20:53 -04:00
parent e2140ad7a8
commit 058189dfcf
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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.")),
]