From 047cbb3443e5973ad758fa66192f9c9b82ec97c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 23 Apr 2014 04:17:40 +0200 Subject: [PATCH] core: fix tempate HVM creation --- core-modules/02QubesTemplateHVm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core-modules/02QubesTemplateHVm.py b/core-modules/02QubesTemplateHVm.py index a8628343..23f2fdfd 100644 --- a/core-modules/02QubesTemplateHVm.py +++ b/core-modules/02QubesTemplateHVm.py @@ -71,6 +71,8 @@ class QubesTemplateHVm(QubesHVm): @classmethod def is_template_compatible(cls, template): + if template is None: + return True return False def resize_root_img(self, size):