From 5f8ec81023f7acefcab1597a60cd0094d85ee3f1 Mon Sep 17 00:00:00 2001 From: Sascha Silbe Date: Fri, 15 Oct 2010 18:39:50 +0000 Subject: PEP8 cleanup: fix deprecated raise syntax Reviewed-by: James Cameron Acked-by: Simon Schampijer CC: Aleksey Lim --- diff --git a/src/sugar/graphics/style.py b/src/sugar/graphics/style.py index d5f82ff..7f48d9a 100644 --- a/src/sugar/graphics/style.py +++ b/src/sugar/graphics/style.py @@ -83,7 +83,7 @@ class Color(object): if html_color[0] == '#': html_color = html_color[1:] if len(html_color) != 6: - raise ValueError, "input #%s is not in #RRGGBB format" % html_color + raise ValueError('input #%s is not in #RRGGBB format' % html_color) r, g, b = html_color[:2], html_color[2:4], html_color[4:] r, g, b = [int(n, 16) for n in (r, g, b)] -- cgit v0.9.1