From b323a4d1e3b4f47db166a58fcd9daca68a3635fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Mon, 29 Jul 2013 03:58:08 +0200 Subject: [PATCH] core: Fix handling the case when no settings file present. --- core/qubes.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/qubes.py b/core/qubes.py index d2ed5b67..0fc2ebf5 100755 --- a/core/qubes.py +++ b/core/qubes.py @@ -877,8 +877,7 @@ for module_file in sorted(os.listdir(modules_dir)): try: import qubes.settings qubes.settings.apply(system_path, vm_files, defaults) -#except ImportError: -finally: +except ImportError: pass for path_key in system_path.keys():