From 56cab5a80c78565768aa56a6bd8a3ea4588630a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stefan=20K=C3=B6gl?= Date: Tue, 12 Nov 2013 17:41:03 +0100 Subject: [PATCH] fix feed-downloader --next for podcast groups --- mygpo/maintenance/management/podcastcmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mygpo/maintenance/management/podcastcmd.py b/mygpo/maintenance/management/podcastcmd.py index a5223c3f..786d2017 100644 --- a/mygpo/maintenance/management/podcastcmd.py +++ b/mygpo/maintenance/management/podcastcmd.py @@ -56,7 +56,7 @@ class PodcastCommand(BaseCommand): if options.get('next'): podcasts = podcasts_by_next_update(limit=max_podcasts) - yield (p.url for p in podcasts) + yield (p.url for p in individual_podcasts(podcasts)) if args: -- 2.11.4.GIT