diff --git a/CHANGELOG.md b/CHANGELOG.md index e60bfac..e2b42f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.3.2] - 2025-08-04 + +### Fixed + +- Fix syntax + ## [7.3.1] - 2025-08-04 ### Fixed diff --git a/linux/debian/changelog b/linux/debian/changelog index ab378f5..ea3421e 100644 --- a/linux/debian/changelog +++ b/linux/debian/changelog @@ -1,3 +1,9 @@ +ogagent (7.3.2-1) stable; urgency=medium + + * Fix syntax + + -- OpenGnsys developers Mon, 04 Aug 2025 14:36:47 +0200 + ogagent (7.3.1-1) stable; urgency=medium * On user logout, write the user to the log diff --git a/src/VERSION b/src/VERSION index 643916c..eab246c 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -7.3.1 +7.3.2 diff --git a/src/opengnsys/modules/server/OpenGnSys/__init__.py b/src/opengnsys/modules/server/OpenGnSys/__init__.py index ceb0c3e..5f1c339 100644 --- a/src/opengnsys/modules/server/OpenGnSys/__init__.py +++ b/src/opengnsys/modules/server/OpenGnSys/__init__.py @@ -388,7 +388,7 @@ class OpenGnSysWorker(ServerWorker): iters += 1 if iters >= 10: break - try: os.unlink ('/tmp/EjecutarScript-jobid'): + try: os.unlink ('/tmp/EjecutarScript-jobid') except: pass if job_id is None: return {'op': 'launched'}