From 509f41e14c9b126eedef4b5ae0d831793bc7c056 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Wed, 24 Apr 2013 17:40:16 +0200 Subject: [PATCH] missing properties in PropertiesOptionError --- tiramisu/setting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiramisu/setting.py b/tiramisu/setting.py index 9d7838e..abeb4a7 100644 --- a/tiramisu/setting.py +++ b/tiramisu/setting.py @@ -377,7 +377,7 @@ def apply_requires(opt, config): except PropertiesOptionError, err: properties = err.proptype raise PropertiesOptionError(_("option '{0}' has requirement's property error: " - "{1} {2}").format(opt._name, path, properties)) + "{1} {2}").format(opt._name, path, properties), properties) except AttributeError: raise AttributeError(_("required option not found: " "{0}").format(path))