]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
list comprehension instead of map.
authorDavid Mazary <dmazary@gmail.com>
Sun, 18 Mar 2012 19:29:20 +0000 (16:29 -0300)
committerDavid Mazary <dmazary@gmail.com>
Sun, 18 Mar 2012 19:29:20 +0000 (16:29 -0300)
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)