Commit 1ed6921e00b73449baf22d080f32fde2a78aef20
1 parent
042043dc
Minor fix.
Showing
1 changed file
with
1 additions
and
1 deletions
corneferencer/resolvers/features.py
... | ... | @@ -229,7 +229,7 @@ def check_one_way_acronym(acronym, expression): |
229 | 229 | for expr2 in expr1.split(): |
230 | 230 | expr2 = expr2.strip() |
231 | 231 | if expr2: |
232 | - initials += str(expr2[0]).upper() | |
232 | + initials += unicode(expr2[0]).upper() | |
233 | 233 | if acronym == initials: |
234 | 234 | return 1; |
235 | 235 | return 0; |
... | ... |