Fix enable so we can actually enable commands again.

This commit is contained in:
James Vega 2005-04-21 03:06:43 +00:00
parent 3e07d76dcd
commit 8ccf3ade45

View File

@ -544,7 +544,8 @@ class Owner(callbacks.Plugin):
"""
try:
if plugin:
command = '%s.%s' % (plugin.name(), command)
# This is unnecessary and was breaking things.
#command = '%s.%s' % (plugin.name(), command)
self._disabled.remove(command, plugin.name())
else:
self._disabled.remove(command)