From b0d07ef3fe59e023527379cbb9e0dd23bbf1f682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 21 Mar 2019 14:08:47 +0100 Subject: [PATCH] Fix incorrect vendor image pulling --- CHANGELOG.md | 1 + tutor/images.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d71662..e8559c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Latest +- [Bugfix] Fix `images pull all` command which failed on "all" image - [Improvement] Add configurable mongodb, SMTP and rabbitmq authentication - [Improvement] Harmonize mysql username/password configuration parameters - [Feature] Configurable and pluggable data storage backends (#114) diff --git a/tutor/images.py b/tutor/images.py index 5808e43..989d6f5 100644 --- a/tutor/images.py +++ b/tutor/images.py @@ -97,6 +97,7 @@ def vendor_image_names(config, image): images.remove('mysql') if not config['ACTIVATE_RABBITMQ']: images.remove('rabbitmq') + return images return [image] images.add_command(build)