view ikweb/tools/lazy/www/work/__init__.py @ 377:5d6f429e5f19 tip

fixed a typo.
author "Rex Tsai <chihchun@kalug.linux.org.tw>"
date Tue, 14 Apr 2009 17:16:43 +0800
parents 7747bbe5b68e
children
line wrap: on
line source

from lazy.www.work.fetch import Fetcher
from lazy.www.work.find import Finder
from lazy.www.core import SemiProduct

class WorkFlow:

    def __init__(self, worker):
        self.worker = worker
        
    def __getattr__(self, name):
        return getattr(self.worker, name)