# HG changeset patch # User Neil Muller # Date 1315831923 -7200 # Node ID ce0fec120d5e7a7ff419d3da0643a5f1d37c148b # Parent 2c643ec8dc4e70884be5ba978bf4189b6e465e2c pep8 cleanup diff -r 2c643ec8dc4e -r ce0fec120d5e mamba/widgets/text.py --- a/mamba/widgets/text.py Mon Sep 12 14:51:02 2011 +0200 +++ b/mamba/widgets/text.py Mon Sep 12 14:52:03 2011 +0200 @@ -20,7 +20,8 @@ font = (self.fontname, self.fontsize) if font not in TextWidget.fontcache: fontfn = filepath('fonts/' + self.fontname) - TextWidget.fontcache[font] = pygame.font.Font(fontfn, self.fontsize) + TextWidget.fontcache[font] = pygame.font.Font(fontfn, + self.fontsize) self.font = TextWidget.fontcache[font] if not isinstance(self.color, pygame.Color): self.color = pygame.Color(self.color)