#!/usr/bin/python class Notification(object): def __init__(self, title, body=""): self.title = title self.body = body def body_append(self, line): self.body += line