Browse Source

print_error method for plugins

283
ThomasV 10 years ago
parent
commit
2f1c597e8f
  1. 3
      lib/plugins.py

3
lib/plugins.py

@ -82,6 +82,9 @@ class BasePlugin:
def fullname(self):
return self.name
def print_error(self, msg):
print_error("[%s]"%self.name, msg)
def description(self):
return 'undefined'

Loading…
Cancel
Save