Changed template to wrap lines in example.

This commit is contained in:
Jeremy Fincher 2003-08-27 16:26:59 +00:00
parent b572562cb3
commit 5c86cd2ce4
1 changed files with 3 additions and 2 deletions

View File

@ -44,6 +44,7 @@ Add the module docstring here. This will be used by the setup.py script.
from baseplugin import * from baseplugin import *
import utils
import privmsgs import privmsgs
import callbacks import callbacks
@ -56,9 +57,9 @@ def configure(onStart, afterConnect, advanced):
from questions import expect, anything, something, yn from questions import expect, anything, something, yn
onStart.append('load %s') onStart.append('load %s')
example = """ example = utils.wrapLines("""
Add an example IRC session using this module here. Add an example IRC session using this module here.
""" """)
class %s(%s): class %s(%s):
%s %s