Skip to content

Commit

Permalink
Make a string unicode.
Browse files Browse the repository at this point in the history
Fixes #6848
  • Loading branch information
michaelDCurran committed Feb 6, 2017
1 parent 38cec28 commit 935b43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/NVDAObjects/window/excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ def _get_columnNumber(self):
def getCellPosition(self):
rowAndColumn = self.cellCoordsText
sheet = self.excelWindowObject.ActiveSheet.name
return "Sheet {0}, {1}".format(sheet, rowAndColumn)
return u"Sheet {0}, {1}".format(sheet, rowAndColumn)

def _get_tableID(self):
address=self.excelCellObject.address(1,1,0,1)
Expand Down

0 comments on commit 935b43c

Please sign in to comment.