]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/util.py
list comprehension instead of map.
[xonotic/xonstat.git] / xonstat / util.py
index 2b1582d1ade790ccecb14ecacbdc05dcd4040414..e34adfc2aa5268460a802c819677edd16d739178 100755 (executable)
@@ -91,7 +91,7 @@ def hex_repl(match):
     if light < _contrast_threshold:
         light = _contrast_threshold
     # Get new rgb in 0-255 scale
-    r, g, b = map((255).__mul__, hls_to_rgb(hue, light, satur))
+    r, g, b = tuple([255 * i for i in hls_to_rgb(hue, light, satur)])
     return '<span style="color:rgb({0},{1},{2})">'.format(r, g, b)