Splitted a string to fit in 79 columns.

Gra [2009-04-24 12:07]
Splitted a string to fit in 79 columns.
Filename
tooltip.py
diff --git a/tooltip.py b/tooltip.py
index 34d5fe2..a35c241 100644
--- a/tooltip.py
+++ b/tooltip.py
@@ -204,7 +204,8 @@ def demo():
     l = Tkinter.Listbox(root)
     l.insert('end', "I'm a listbox")
     l.pack(side='top')
-    t1 = ToolTip(l, follow_mouse=1, text="I'm a tooltip with follow_mouse set to 1, so I won't be placed outside my parent")
+    t1 = ToolTip(l, follow_mouse=1, text="I'm a tooltip with follow_mouse set "
+       "to 1, so I won't be placed outside my parent")
     b = Tkinter.Button(root, text='Quit', command=root.quit)
     b.pack(side='bottom')
     t2 = ToolTip(b, text='Enough of this')
ViewGit