From 92c34bdc401057e354195451f1c9646e0386a102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Mon, 17 Jun 2024 22:31:25 +0200 Subject: [PATCH] add missing colon after breaking up long line --- easybuild/easyblocks/o/openfoam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyblocks/o/openfoam.py b/easybuild/easyblocks/o/openfoam.py index 044fb39e70..decff2c8ba 100644 --- a/easybuild/easyblocks/o/openfoam.py +++ b/easybuild/easyblocks/o/openfoam.py @@ -295,7 +295,7 @@ def configure_step(self): for dep in self.cfg.dependencies(): # CGAL >= 5.x is header-only, but when using it OpenFOAM still needs MPFR and GMP. # It may fail to find them, so inject the right settings and paths into the "have_cgal" script. - if dep['name'] == 'CGAL' and LooseVersion(dep['version']) >= LooseVersion('5.0') + if dep['name'] == 'CGAL' and LooseVersion(dep['version']) >= LooseVersion('5.0'): if get_software_root('MPFR'): have_cgal_script = os.path.join( self.builddir, self.openfoamdir, 'wmake', 'scripts', 'have_cgal'