From 2125ab7de0b48897154dbe0bbdda9af7d64a5d43 Mon Sep 17 00:00:00 2001 From: Gra Date: Fri, 24 Apr 2009 14:44:06 +0200 Subject: [PATCH] Line breaks for args to fit in 79 columns (Button methods). --- supportscreen.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/supportscreen.py b/supportscreen.py index 0835816..7873382 100644 --- a/supportscreen.py +++ b/supportscreen.py @@ -73,7 +73,8 @@ class SupportScreen(mytkSimpleDialog.Dialog): #w = Button(box, text="OK", width=10, command=self.ok, default=ACTIVE) #w.pack(side=LEFT, padx=5, pady=5) - w = Button(box, text="Continue", width=10, command=self.cancel, default=ACTIVE) + w = Button(box, text="Continue", width=10, + command=self.cancel, default=ACTIVE) w.pack(side=LEFT, padx=5, pady=5) self.bind("", self.cancel) @@ -142,7 +143,8 @@ class ExpirationScreen(mytkSimpleDialog.Dialog): #w = Button(box, text="OK", width=10, command=self.ok, default=ACTIVE) #w.pack(side=LEFT, padx=5, pady=5) - w = Button(box, text="Continue", width=10, command=self.cancel, default=ACTIVE) + w = Button(box, text="Continue", width=10, + command=self.cancel, default=ACTIVE) w.pack(side=LEFT, padx=5, pady=5) self.bind("", self.cancel) @@ -216,7 +218,8 @@ class AboutDialog(mytkSimpleDialog.Dialog): #w = Button(box, text="OK", width=10, command=self.ok, default=ACTIVE) #w.pack(side=LEFT, padx=5, pady=5) - w = Button(box, text="Continue", width=10, command=self.cancel, default=ACTIVE) + w = Button(box, text="Continue", width=10, + command=self.cancel, default=ACTIVE) w.pack(side=LEFT, padx=5, pady=5) self.bind("", self.cancel) -- 2.45.1