summaryrefslogtreecommitdiff
path: root/trunk/test-plugins/aaa_hello_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test-plugins/aaa_hello_plugin.py')
-rw-r--r--trunk/test-plugins/aaa_hello_plugin.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/trunk/test-plugins/aaa_hello_plugin.py b/trunk/test-plugins/aaa_hello_plugin.py
new file mode 100644
index 0000000..f7ca7e9
--- /dev/null
+++ b/trunk/test-plugins/aaa_hello_plugin.py
@@ -0,0 +1,8 @@
+import pluginmgr
+
+class Hello(pluginmgr.Plugin):
+
+ def __init__(self, foo, bar=None):
+ self.foo = foo
+ self.bar = bar
+