Fix for unicode escapes: use getText() instead of getStringValue()

This commit is contained in:
Valentina Kiryushkina
2017-05-05 12:59:07 +03:00
parent 9da8968a96
commit f1d8ea5c82
4 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
s = <warning descr="Format specifier character missing">u"\N{LATIN SMALL LETTER B}%s\N{NUMBER SIGN}\
%\N{LATIN SMALL <caret>LETTER B}"</warning> % ("a", "b")

View File

@@ -0,0 +1,2 @@
s = u"\N{LATIN SMALL LETTER B}%s\N{NUMBER SIGN}\
%s\N{LATIN SMALL LETTER B}" % ("a", "b")