diff options
Diffstat (limited to 'src/icc.py')
-rw-r--r-- | src/icc.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ def parse_icc(content): nonlocal ptr if len(content) - ptr < n: raise Exception('Premature end of file: %s' % pathname) - rc = = content[ptr : ptr + n] + rc = content[ptr : ptr + n] ptr += n return rc |