From 733c0f293f56718d585681a9571f923e88fc41cf Mon Sep 17 00:00:00 2001 From: Gra Date: Fri, 24 Apr 2009 14:11:51 +0200 Subject: [PATCH] Line breaks for args to fit in 79 columns. --- supportscreen.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.45.1