1
0
Fork 0

rename IExporter serve -> start

This commit is contained in:
Jan Vcelak 2011-11-16 22:25:16 +01:00
parent 68b400d096
commit 88abf182bd

View file

@ -23,5 +23,8 @@ class IExporter(object):
# to be overriden by concrete implementation
raise NotImplemented()
def serve(self):
def start(self):
raise NotImplemented()
def stop(self):
raise NotImplemented()