mirror of
https://github.com/python/cpython.git
synced 2026-05-19 02:44:16 -04:00
Bug #1451341: find fuzzy marks correctly.
This commit is contained in:
@@ -127,7 +127,7 @@ def make(filename, outfile):
|
||||
section = None
|
||||
fuzzy = 0
|
||||
# Record a fuzzy mark
|
||||
if l[:2] == '#,' and l.find('fuzzy'):
|
||||
if l[:2] == '#,' and 'fuzzy' in l:
|
||||
fuzzy = 1
|
||||
# Skip comments
|
||||
if l[0] == '#':
|
||||
|
||||
Reference in New Issue
Block a user