iro/model/status.py
author Sandro Knauß <knauss@netzguerilla.net>
Sun, 19 Feb 2012 17:44:44 +0100
branchdevel
changeset 174 762981cada07
parent 161 072ee139eb67
child 215 5bacdb7e94d1
permissions -rw-r--r--
redefinition of Status Exception should be raised directly, not via Status , 'cause of Traceback

class Status:
    '''status for one recipient'''
    def __init__(self, provider, route):
        self.provider = provider
        self.route = route

        self.costs = 0