summaryrefslogtreecommitdiffstats
path: root/src/icc.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/icc.py')
-rw-r--r--src/icc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/icc.py b/src/icc.py
index 0acd74f..27d0d0f 100644
--- a/src/icc.py
+++ b/src/icc.py
@@ -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