diff --git a/README.md b/README.md
index 2d574b818a576746e61a8ae1f24c593988433cb2..999293cf84f59b31d1bcef3f9a3f8c1230fcd4c7 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ try:  # Colored logger CaaS. Auto downloaded and verified.
     from urllib import request
     cache, url = "/tmp/_colored_logger.py", "https://lab.it.hs-hannover.de/lukyanch/pydevutils/raw/fa4af6555a8eb996e1be158ca12691de9b33ba45/colored_logger.py"
     code = bool(os.path.exists(cache) or request.urlretrieve(url, cache)) and open(cache, "r").read()
-    assert hashlib.sha256(code.encode()).hexdigest() == "d4d261a40f95733f9fb184fc4ccb55d007b880cb62c8d6a06824d43eeb1391ac", "unrecognized content in" + cache
+    assert hashlib.sha256(code.encode()).hexdigest() == "d4d261a40f95733f9fb184fc4ccb55d007b880cb62c8d6a06824d43eeb1391ac", "unrecognized content in " + cache
     exec(code)
 except Exception as e:
     print("No colored logger: {e.__class__.__name__}: {e}".format(e=e))