diff --git a/CHANGELOG.md b/CHANGELOG.md index 343bbbf..87894ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,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). +## [0.13.6] - 2025-06-02 + +### Fixed + +- Fixed variable name in restoreImage.py + ## [0.13.5] - 2025-05-30 ### Fixed diff --git a/ogclient/scripts/restoreImage.py b/ogclient/scripts/restoreImage.py index 961b971..0265b2c 100644 --- a/ogclient/scripts/restoreImage.py +++ b/ogclient/scripts/restoreImage.py @@ -76,7 +76,7 @@ if StringLib.ogCheckIpAddress (repo) or 'REPO' == repo: if not NetLib.ogChangeRepo (repo): SystemLib.ogRaiseError ([], ogGlobals.OG_ERR_NOTFOUND, repo) sys.exit (1) - REPO = 'REPO' + repo = 'REPO' # Comprobar que existe la imagen del origen. imgfile = FileLib.ogGetPath (repo, f'{imgname}.{imgtype}')