Skip to content

Commit

Permalink
Fix line too long
Browse files Browse the repository at this point in the history
Ref #261
  • Loading branch information
algorys committed Mar 5, 2018
1 parent ea8a07d commit 50b968b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion alignak_app/qobjects/dock/token.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ def get_token_widget(self):
token_layout = QVBoxLayout()
token_widget.setLayout(token_layout)

token_title = QLabel(_("<b>Token:</b> %s") % data_manager.database['user'].name.capitalize())
token_title = QLabel(
_("<b>Token:</b> %s") % data_manager.database['user'].name.capitalize()
)
token_title.setObjectName('itemtitle')
token_layout.addWidget(token_title)
token_layout.setAlignment(token_title, Qt.AlignCenter)
Expand Down

0 comments on commit 50b968b

Please sign in to comment.