From 894f4233d4cb85715d5cc0597a53b54b256d3d47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20FORAY?= <16308317+ThePhenomN@users.noreply.github.com> Date: Thu, 10 Jun 2021 10:59:50 +0200 Subject: [PATCH] Fix arguments passed in render_and_submit_version The definition of render_and_submit_version never passed the given value of color_space, the value was hardcoded to None. I removed the value forced to None. --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index ed09433..da95307 100644 --- a/app.py +++ b/app.py @@ -106,7 +106,7 @@ def render_and_submit_version( comment, thumbnail_path, progress_cb, - color_space=None, + color_space, *args, **kwargs )