X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ee0903f520403c5e03caef287f813e7b062d05ab..7b0d371a7bbfb9e8d624eec9ed97e9a835f75ca7:/lib/python/Components/Sources/Source.py diff --git a/lib/python/Components/Sources/Source.py b/lib/python/Components/Sources/Source.py index 49bbdbcf..ecd70139 100644 --- a/lib/python/Components/Sources/Source.py +++ b/lib/python/Components/Sources/Source.py @@ -15,3 +15,10 @@ class Source(Element): def destroy(self): self.__dict__.clear() + +class ObsoleteSource(Source): + def __init__(self, new_source, description = None, removal_date = "as soon as possible"): + self.new_source = new_source + self.description = description + self.removal_date = removal_date +