From fb5e9fcfa4ea4b3fb8c75f8c88476cf9802e7f41 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Thu, 21 May 2026 17:43:03 +0200 Subject: [PATCH] cocluto v1.0.23 - fixed bug in the mechanism detecting the availbaility of qmod work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3093] --- cocluto/quman.py | 2 +- cocluto/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cocluto/quman.py b/cocluto/quman.py index 973dd67..5a01070 100755 --- a/cocluto/quman.py +++ b/cocluto/quman.py @@ -98,7 +98,7 @@ class Sge(IGridEngine): if not self.dry_run: # check that qmod command is available try: - subprocess.run(["qmod", "-h"], check=True, capture_output=True) + subprocess.run(["qmod", "-help"], check=True, capture_output=True) except FileNotFoundError as exc: raise RuntimeError("qmod command not found. Please make sure that the grid engine client is installed and qmod command is available in the PATH.") from exc diff --git a/cocluto/version.py b/cocluto/version.py index 8d2e3cb..f742e50 100644 --- a/cocluto/version.py +++ b/cocluto/version.py @@ -1,4 +1,4 @@ -__version__ = '1.0.22' +__version__ = '1.0.23' class Version(object):