Skip to content
Snippets Groups Projects
Commit db4f73f0 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix indentation

parent 36a3db5e
No related branches found
No related tags found
No related merge requests found
......@@ -38,9 +38,9 @@ def paragraph_direction_mark(text):
for char in text:
bidi = unicodedata.bidirectional(char)
if bidi == 'L':
return u'\u200E'
return u'\u200E'
elif bidi == 'AL' or bidi == 'R':
return u'\u200F'
return u'\u200F'
return u'\u200E'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment