mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-21 17:53:23 +02:00
...
This commit is contained in:
parent
b5645f19aa
commit
324622dee5
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ def update_position(self, line=None, col=None, character=None):
|
|||
if line is None:
|
||||
self.la.setText('')
|
||||
else:
|
||||
name = unicodedata.name(character) if character else None
|
||||
name = unicodedata.name(character, None) if character else None
|
||||
text = _('Line: {0} : {1}').format(line, col)
|
||||
if name:
|
||||
text = name + ' : ' + text
|
||||
|
|
|
|||
Loading…
Reference in a new issue