diff --git a/CHANGELOG.md b/CHANGELOG.md index 29ceb4a..7b265a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ 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). +## [0.3.1] - 2025-04-03 + +### Fixed + +- Fixed invocation to ogCheckIpAddress in interfaceAdm/CrearImagen.py + +## [0.3.0] - 2025-04-03 + +### Removed + +- Removed burg and rsync 3.1 + +## [0.2.6] - 2025-03-31 + +### Fixed + +- Restore qt4 browser + ## [0.2.5] - 2025-03-31 ### Fixed diff --git a/ogclient/interfaceAdm/CrearImagen.py b/ogclient/interfaceAdm/CrearImagen.py index ea2b096..2ab2b58 100755 --- a/ogclient/interfaceAdm/CrearImagen.py +++ b/ogclient/interfaceAdm/CrearImagen.py @@ -66,7 +66,7 @@ repo = arg_repo if not repo: repo = 'REPO' if repo == ogGetIpAddress(): repo = 'CACHE' # Si es una ip y es distinta a la del recurso samba cambiamos de REPO. -if 'REPO' == repo or StringLib.ogCheckIpAddress (repo): +if 'REPO' == repo or ogCheckIpAddress (repo): # Si falla el cambio -> salimos con error repositorio no valido if not ogChangeRepo (repo): ogRaiseError ([], ogGlobals.OG_ERR_NOTFOUND, repo)