From 54012a62927793c835d95039079020bddce1e646 Mon Sep 17 00:00:00 2001 From: Leonardo Pistone Date: Mon, 29 Sep 2014 15:23:25 +0200 Subject: [PATCH] lint comment --- server_environment/serv_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server_environment/serv_config.py b/server_environment/serv_config.py index 23d63371b..eb5be0509 100644 --- a/server_environment/serv_config.py +++ b/server_environment/serv_config.py @@ -56,7 +56,7 @@ if not os.path.exists(ck_path): def setboolean(obj, attr, _bool=None): """Replace the attribute with a boolean.""" if _bool is None: - _bool = dict(_boolean_states) # we copy original dict + _bool = dict(_boolean_states) # we copy original dict res = _bool[getattr(obj, attr).lower()] setattr(obj, attr, res) return res