From 0c712538fca9557c22dce5d07a2dffe434d17c96 Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Tue, 11 Jun 2019 10:58:25 +0200 Subject: [PATCH] Bugfix in parameter generating --- forecasts/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forecasts/models.py b/forecasts/models.py index e62bb8fd..d9cd618c 100755 --- a/forecasts/models.py +++ b/forecasts/models.py @@ -255,7 +255,7 @@ class ForecastConfiguration: settings.VIPSLOGIC_PROTOCOL, settings.VIPSLOGIC_SERVER_NAME, settings.VIPS_ORGANIZATION_ID, - settings.INCLUDE_ORGANIZATION_IDS + ",".join(str(x) for x in settings.INCLUDE_ORGANIZATION_IDS) ) ) return request_result -- GitLab