`line` -> `line_b`

This commit is contained in:
jesopo 2020-05-15 16:43:18 +01:00
parent cbeb39628d
commit 3cbc9f1bfb
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ def tokenise_b(
fallback: str="latin-1") -> Line:
if b"\x00" in line_b:
line, _ = line.split(b"\x00", 1)
line_b, _ = line_b.split(b"\x00", 1)
tags: Optional[str] = None
if line_b[0] == ord(b"@"):