Skip to content

Commit

Permalink
Merge pull request #3543 from spyder-ide/fix_issue_3522
Browse files Browse the repository at this point in the history
PR: Change of the label in the dependencies dialog
  • Loading branch information
ccordoba12 authored Oct 19, 2016
2 parents 982110d + d4719d5 commit 05f5a15
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spyder/widgets/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ def __init__(self, parent):
"them.<br><br>"
"<b>Note</b>: You can safely use Spyder "
"without the following modules installed: "
"<b>%s</b> and <b>%s</b>")
"<b>%s</b> and <b>%s</b>.<br><br>"
"Please also note that new "
"dependencies or changed ones will be correctly "
"detected only after Spyder is restarted.")
% (', '.join(opt_mods[:-1]), opt_mods[-1]))
self.label.setWordWrap(True)
self.label.setAlignment(Qt.AlignJustify)
Expand Down

0 comments on commit 05f5a15

Please sign in to comment.