Skip to content

Commit

Permalink
Merge pull request #3785 from dalthviz/fixes_issue_3737
Browse files Browse the repository at this point in the history
PR: Change file switcher entries to unicode
  • Loading branch information
ccordoba12 authored Dec 5, 2016
2 parents 73a8971 + f194372 commit f22bbeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spyder/widgets/fileswitcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def setup_file_list(self, filter_text, current_path):
if trying_for_line_number:
text_item += " [{0:} {1:}]".format(self.line_count[index],
_("lines"))
text_item += "<br><i>{0:}</i>".format(short_paths[index])
text_item += u"<br><i>{0:}</i>".format(short_paths[index])
results.append((score_value, index, text_item))

# Sort the obtained scores and populate the list widget
Expand Down

0 comments on commit f22bbeb

Please sign in to comment.