diff options
-rw-r--r-- | src/icc.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ def load_icc(pathname): content = None with open(pathname, 'rb') as file: content = file.read() - return content + return parse_icc(content) def get_current_icc(): |