summaryrefslogtreecommitdiff
path: root/trunk/test-plugins/oldhello_plugin.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-03-25 09:21:12 +0200
committerLars Wirzenius <liw@liw.fi>2019-03-25 09:21:12 +0200
commitf35245d746080f4e8ba020eff66375e1a938ce52 (patch)
tree736bc347655cdf84fb2608e7cdfbfa7d5bdbf0c9 /trunk/test-plugins/oldhello_plugin.py
downloaddimbola-f35245d746080f4e8ba020eff66375e1a938ce52.tar.gz
Add: initial commitHEADmaster
Diffstat (limited to 'trunk/test-plugins/oldhello_plugin.py')
-rw-r--r--trunk/test-plugins/oldhello_plugin.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/trunk/test-plugins/oldhello_plugin.py b/trunk/test-plugins/oldhello_plugin.py
new file mode 100644
index 0000000..47b3b67
--- /dev/null
+++ b/trunk/test-plugins/oldhello_plugin.py
@@ -0,0 +1,9 @@
+import pluginmgr
+
+class Hello(pluginmgr.Plugin):
+
+ def __init__(self, foo, bar=None):
+ self.foo = foo
+ self.bar = bar
+
+