また、!status と入力すると、Helloworld は A (アクティブ) としてリストに表示されません。私のプラグインを読んでいるとは思いません。助言がありますか?
# code for helloworldld.py
from errbot import BotPlugin, botcmd
class HelloWorld(BotPlugin):
"""Example 'Hello, world!' plugin for Errbot"""
@botcmd
def hello(self, msg, args):
"""Say hello to the world"""
return "Hello, world!"
# code for helloworld.plug
[Core]
Name = HelloWorld
Module = helloworld
[Python]
Version = 2+
[Documentation]
Description = Example "Hello, world!" plugin