From 9bae81a99389841742d6b4c24ef96da76a166b24 Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 20 Jun 2021 11:33:24 +0200 Subject: [PATCH] Removed unneeded condition. --- box.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/box.py b/box.py index cc9de43..a76aad7 100755 --- a/box.py +++ b/box.py @@ -282,7 +282,7 @@ class Config: if not self.distro: self.distro = 'ubuntu' - if not self.version and self.distro: + if not self.version: self.version = DISTROS[self.distro]['default_version'] # finally, figure out host name