diff --git a/pym/cl_distr.py b/pym/cl_distr.py index 7f4aef8..d8ae806 100644 --- a/pym/cl_distr.py +++ b/pym/cl_distr.py @@ -176,6 +176,7 @@ class DistributiveRepository: return False # check filter conditions if system and self.system(d['name']) != system or \ + not "name" in d or not "ver" in d or \ shortname and d['name'].lower() != shortname.lower() or \ march and d['march'] != march or \ version and d['ver'] != version: diff --git a/pym/cl_install.py b/pym/cl_install.py index 81b484e..e1134c2 100644 --- a/pym/cl_install.py +++ b/pym/cl_install.py @@ -1180,8 +1180,8 @@ class cl_install(color_print): error = None try: if self.clVars.Get('os_root_type') == "livecd": - slef.printMessageForTest(configureMessage) - self.printByResult(applyTemplatesLive()) + self.printMessageForTest(configureMessage) + self.printByResult(self.applyTemplatesLive()) objUsers = currentUsers() if not objUsers.hasUsers("guest"): self.printMessageForTest(_("Adding guest user"))