From 707b55a676fd2845d76104abe9a6d6a7dac4055e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 25 Sep 2003 02:58:23 +0000 Subject: [PATCH] Oops, forgot to change the last string. --- scripts/supybot-newplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/supybot-newplugin.py b/scripts/supybot-newplugin.py index 9985472d0..eec5e37ae 100755 --- a/scripts/supybot-newplugin.py +++ b/scripts/supybot-newplugin.py @@ -117,6 +117,6 @@ if __name__ == '__main__': fd = file(name + '.py', 'w') fd.write(template % (name, name, className, threaded, name)) fd.close() - print 'Your new plugin template is in plugins/%s.py' % name + print 'Your new plugin template is %s.py.' % name # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: