Added __url__ to the default stuff generated by supybot-newplugin.

This commit is contained in:
Jeremy Fincher 2005-03-14 02:16:34 +00:00
parent bc49542d41
commit 5fe4730dcb
1 changed files with 4 additions and 1 deletions

View File

@ -150,6 +150,9 @@ __author__ = supybot.authors.unknown
# contributions.
__contributors__ = {}
# This is a url where the most recent plugin package can be downloaded.
__url__ = '' # 'http://supybot.com/Members/yourname/%s/download'
import config
import plugin
reload(plugin) # In case we\'re being reloaded.
@ -255,7 +258,7 @@ def main():
writeFile('plugin.py', pluginTemplate % (copyright, name,
name, threaded, name))
writeFile('config.py', configTemplate % (copyright, name, name, name, name))
writeFile('__init__.py', __init__Template % copyright)
writeFile('__init__.py', __init__Template % (copyright, name))
writeFile('test.py', testTemplate % (copyright, name, name))
writeFile('README.txt', readmeTemplate)