Line breaks for args to fit in 79 columns.

Gra [2009-04-24 12:11]
Line breaks for args to fit in 79 columns.
Filename
supportscreen.py
diff --git a/supportscreen.py b/supportscreen.py
index 64b0153..f9c6d50 100644
--- a/supportscreen.py
+++ b/supportscreen.py
@@ -5,8 +5,10 @@ import ScrolledText
 import version

 class SupportScreen(mytkSimpleDialog.Dialog):
-    def __init__(self, parent, title = None, rootx_offset=50, rooty_offset=50):
-        mytkSimpleDialog.Dialog.__init__(self, parent, title, rootx_offset, rooty_offset)
+    def __init__(self, parent, title = None,
+                 rootx_offset=50, rooty_offset=50):
+        mytkSimpleDialog.Dialog.__init__(self, parent, title,
+                                         rootx_offset, rooty_offset)

     def body(self, master):
         self.t = ScrolledText.ScrolledText(master)
ViewGit