summaryrefslogtreecommitdiffstats
path: root/modules/test.py
diff options
context:
space:
mode:
authorRobin Norwood <rnorwood@solitude.devel.redhat.com>2007-09-21 12:07:40 -0400
committerRobin Norwood <rnorwood@solitude.devel.redhat.com>2007-09-21 12:07:40 -0400
commit15744d6ff91a583fabb7554bed16bc249bc38c32 (patch)
treefd37cdbd0d0dd04fca2654a74cd58f66833c2ed8 /modules/test.py
parent62bf26a5f7fed44ba703e3b854a4923ce1447f27 (diff)
parent75677513dd6d1f79a0411fec942ad4968d86dd25 (diff)
downloadthird_party-func-15744d6ff91a583fabb7554bed16bc249bc38c32.tar.gz
third_party-func-15744d6ff91a583fabb7554bed16bc249bc38c32.tar.xz
third_party-func-15744d6ff91a583fabb7554bed16bc249bc38c32.zip
Merge branch 'master' of git://git.fedoraproject.org/git/hosted/func
Diffstat (limited to 'modules/test.py')
-rwxr-xr-xmodules/test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/test.py b/modules/test.py
index eb2e3f4..b742e31 100755
--- a/modules/test.py
+++ b/modules/test.py
@@ -1,14 +1,14 @@
#!/usr/bin/python
from codes import *
-from modules import web_svc
+from modules import func_module
-class Test(web_svc.WebSvc):
+class Test(func_module.FuncModule):
def __init__(self):
self.methods = {
"test_add": self.add
}
- web_svc.WebSvc.__init__(self)
+ func_module.FuncModule.__init__(self)
def add(self, numb1, numb2):
return numb1 + numb2