Fix typo bug in iccp.py GitOrigin-RevId: 27032b074f748997cfde1f30797d327debaee56b Change-Id: I00ebdecec9ec89693f81b217971c1dd3c40ee7bd
diff --git a/code/iccp.py b/code/iccp.py index 58f2535..d62287a 100755 --- a/code/iccp.py +++ b/code/iccp.py
@@ -438,9 +438,10 @@ def iccp_from_png(out, png): """Extract ICC Profile from (open) PNG file `inp` and - write it to the file `out`.""" + write it to the file `out`. + """ - out.write(profileFromPNG(inp)[0]) + out.write(profileFromPNG(png)[0]) def fs15f16(x):