From 3c8adf391c2ae63b4f898e463f565572fcbac901 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Mon, 27 Sep 2010 18:54:16 +0200 Subject: [PATCH] fix indentation --- weboob/applications/weboobcfg/weboobcfg.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/weboob/applications/weboobcfg/weboobcfg.py b/weboob/applications/weboobcfg/weboobcfg.py index 382db19c..47fd74cd 100644 --- a/weboob/applications/weboobcfg/weboobcfg.py +++ b/weboob/applications/weboobcfg/weboobcfg.py @@ -70,7 +70,10 @@ class WeboobCfg(ReplApplication): backend = self.weboob.modules_loader.get_or_load_module(name) row = OrderedDict([('Instance name', instance_name), ('Backend', name), - ('Configuration', ', '.join('%s=%s' % (key, ('*****' if key in backend.config and backend.config[key].is_masked else value)) for key, value in params.iteritems())), + ('Configuration', ', '.join( + '%s=%s' % (key, ('*****' if key in backend.config and backend.config[key].is_masked \ + else value)) \ + for key, value in params.iteritems())), ]) self.format(row) self.flush()