From 47c12fe00b61c9ababc8b92a6aa2e6beb0fd9846 Mon Sep 17 00:00:00 2001 From: Xavier-Do Date: Wed, 15 Jun 2022 12:30:41 +0200 Subject: [PATCH] [FIX] runbot: add MULTILINE to ReProxy --- runbot/models/build_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runbot/models/build_config.py b/runbot/models/build_config.py index 04a48fa9..a55ee02d 100644 --- a/runbot/models/build_config.py +++ b/runbot/models/build_config.py @@ -38,6 +38,7 @@ class ReProxy(): return re.findall(*args, **kwrags) VERBOSE = re.VERBOSE + MULTILINE = re.MULTILINE class Config(models.Model): _name = 'runbot.build.config'