From 41c126bfa6155b0c087291063211e857a7681e6f Mon Sep 17 00:00:00 2001 From: Stefan Koegl Date: Mon, 19 Apr 2010 16:36:52 +0200 Subject: [PATCH] fix bug when adding podcast to existing group --- mygpo/api/models/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mygpo/api/models/__init__.py b/mygpo/api/models/__init__.py index fa7909ea..7c812159 100644 --- a/mygpo/api/models/__init__.py +++ b/mygpo/api/models/__init__.py @@ -91,7 +91,7 @@ class Podcast(models.Model): if self.group != None: if other.group == None: - self.group.add(other) + self.group.add(other, myname) else: raise ValueError('the podcasts are already in different groups') -- 2.11.4.GIT