Line breaks for args to fit in 79 columns in test code.

Gra [2009-04-24 12:34]
Line breaks for args to fit in 79 columns in test code.
Filename
supportscreen.py
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()
ViewGit