From 3d95ba958cbf1300579aae1057b02347df490d3c Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 8 Jun 2022 12:36:39 -0300 Subject: [PATCH] Fixed problems with compress output and unconfigured sources --- kibot/out_compress.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kibot/out_compress.py b/kibot/out_compress.py index 7360359a..0f9afe29 100644 --- a/kibot/out_compress.py +++ b/kibot/out_compress.py @@ -192,6 +192,7 @@ class CompressOptions(BaseOptions): for f in self.files: if f.from_output: out = RegOutput.get_output(f.from_output) + config_output(out) if out is not None and out.category: if isinstance(out.category, str): cats.add(out.category)