From f6e3cd9967b235570b96e4aa73f85132ba5ad78f Mon Sep 17 00:00:00 2001 From: Gra Date: Fri, 24 Apr 2009 14:34:24 +0200 Subject: [PATCH] Line breaks for args to fit in 79 columns in test code. --- supportscreen.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/supportscreen.py b/supportscreen.py index 4d30856..e256c53 100644 --- a/supportscreen.py +++ b/supportscreen.py @@ -244,17 +244,20 @@ if __name__ == '__main__': # test code root=Tk() root.geometry("100x100+200+200") - warn=SupportScreen(root, title="Please Support PyKeylogger", rootx_offset=-20, rooty_offset=-35) + warn=SupportScreen(root, title="Please Support PyKeylogger", + rootx_offset=-20, rooty_offset=-35) root.quit() root.destroy() root=Tk() root.geometry("100x100+200+200") - warn=ExpirationScreen(root, title="PyKeylogger Has Expired", rootx_offset=-20, rooty_offset=-35) + warn=ExpirationScreen(root, title="PyKeylogger Has Expired", + rootx_offset=-20, rooty_offset=-35) root.quit() root.destroy() root=Tk() root.geometry("100x100+200+200") - warn=AboutDialog(root, title="About PyKeylogger", rootx_offset=-20, rooty_offset=-35) + warn=AboutDialog(root, title="About PyKeylogger", + rootx_offset=-20, rooty_offset=-35) root.quit() -- 2.45.1