From: Fredrik Tolf Date: Fri, 17 May 2013 05:29:48 +0000 (+0200) Subject: Added a dummy save method to manga profiles. X-Git-Url: http://dolda2000.com/gitweb/?p=automanga.git;a=commitdiff_plain;h=5997ac775166eef814b46dc8d5df7f9961397c28 Added a dummy save method to manga profiles. --- diff --git a/manga/profile.py b/manga/profile.py index 2620a98..e8414a1 100644 --- a/manga/profile.py +++ b/manga/profile.py @@ -89,6 +89,9 @@ class manga(object): import lib return lib.findlib(self.libnm).byid(self.id) + def save(self): + pass + class memmanga(manga): def __init__(self, profile, libnm, id): super(memmanga, self).__init__(profile, libnm, id)