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