fix indentation
This commit is contained in:
parent
8ab772c3d7
commit
3c8adf391c
1 changed files with 4 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue