fix indentation

This commit is contained in:
Christophe Benz 2010-09-27 18:54:16 +02:00
commit 3c8adf391c

View file

@ -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()