diff options
author | Jason Gerecke <killertofu@gmail.com> | 2016-12-03 22:30:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-03 22:30:29 -0800 |
commit | 0db0529bd89fb93d1bba7b67691e5fda68b5ae47 (patch) | |
tree | 773a05f7bad85c837d713ea90c4ce7425f454f80 | |
parent | m (diff) | |
download | blueshift-0db0529bd89fb93d1bba7b67691e5fda68b5ae47.tar.gz blueshift-0db0529bd89fb93d1bba7b67691e5fda68b5ae47.tar.bz2 blueshift-0db0529bd89fb93d1bba7b67691e5fda68b5ae47.tar.xz |
Fix syntax error
-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 |