X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_librarian%2Finp.py;h=b3a3d84b43b662bd7870f51d77d0f504d8c18a78;hb=0bf7ac6d6e6f181dec32e18af0e3566d659af527;hp=863523fe2cbbf0f95637656e702f6b364873a5c5;hpb=67a025f168498a481ce10798ed66fa3d79af008d;p=m_librarian.git diff --git a/m_librarian/inp.py b/m_librarian/inp.py index 863523f..b3a3d84 100644 --- a/m_librarian/inp.py +++ b/m_librarian/inp.py @@ -14,10 +14,10 @@ EOT = chr(4) # INP field separator def split_line(line): parts = line.strip().split(EOT) - l = len(parts) - if l < 11: + _l = len(parts) + if _l < 11: raise ValueError('Unknown INP structure: "%s"' % line) - if l == 11: # Standard structure + if _l == 11: # Standard structure parts.append(None) # Emulate lang else: # New structure parts = parts[:12]