changeset 142:ce0fec120d5e

pep8 cleanup
author Neil Muller <drnlmuller@gmail.com>
date Mon, 12 Sep 2011 14:52:03 +0200
parents 2c643ec8dc4e
children 525fe7b7da80
files mamba/widgets/text.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)