Skip to content

Commit d0cf1ee

Browse files
committed
Fix read of fuzzy flag
1 parent 92b3629 commit d0cf1ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

msgcheck/po.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def read(self):
336336
line = line.strip()
337337
if len(line) == 0:
338338
continue
339-
if line[0] == '#':
339+
if line.startswith('#,'):
340340
fuzzy = 'fuzzy' in line
341341
continue
342342
if line.startswith('msg'):

0 commit comments

Comments
 (0)