more fun with string exceptions

This commit is contained in:
Benjamin Peterson 2010-10-31 18:13:04 +00:00
parent 959516615c
commit 2d8c917f30
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class Math:
elif method == 'add':
return params[0] + params[1]
else:
raise 'bad method'
raise ValueError('bad method')
server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()