From 43eabb99474a33d94e6d30310434b5044643cf8c Mon Sep 17 00:00:00 2001 From: gryf Date: Tue, 4 Jul 2023 18:48:18 +0200 Subject: [PATCH] Fix nasty bug for debian images --- box.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/box.py b/box.py index 8306c96..00250cb 100755 --- a/box.py +++ b/box.py @@ -18,7 +18,7 @@ import requests import yaml -__version__ = "1.9" +__version__ = "1.9.1" CACHE_DIR = os.environ.get('XDG_CACHE_HOME', os.path.expanduser('~/.cache')) CLOUD_IMAGE = "ci.iso" @@ -640,6 +640,8 @@ class OsTypes: if name not in self._ostypes: return 'Debian_64' + return name + def get(self): if not hasattr(self, self._conf.distro): return "Linux_64"