remove unnecessary brackets
This commit is contained in:
parent
f1a43f1101
commit
3dd50f363d
11 changed files with 13 additions and 12 deletions
|
|
@ -287,7 +287,7 @@ class BackendCfg(QDialog):
|
|||
backend.license,
|
||||
(unicode(self.tr('<b>Website</b>: %s<br />')) % backend.website) if backend.website else '',
|
||||
backend.description,
|
||||
', '.join(sorted([cap.__name__.replace('ICap', '') for cap in backend.iter_caps()]))))
|
||||
', '.join(sorted(cap.__name__.replace('ICap', '') for cap in backend.iter_caps()))))
|
||||
|
||||
if backend.has_caps(ICapAccount) and self.ui.nameEdit.isEnabled() and backend.klass.ACCOUNT_REGISTER_PROPERTIES is not None:
|
||||
self.ui.registerButton.show()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue