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]
This commit is contained in:
Guillaume Raffy 2026-05-21 17:43:03 +02:00
parent eef27f1dd2
commit fb5e9fcfa4
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
__version__ = '1.0.22'
__version__ = '1.0.23'
class Version(object):