From 3b115b21ad266bd72df3cbca99b217e532790cda Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Sat, 22 Jun 2013 18:15:46 +0100 Subject: [PATCH] Removed filter in mc --- spa/management/commands/tagmix.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spa/management/commands/tagmix.py b/spa/management/commands/tagmix.py index fe2505e..05d5282 100644 --- a/spa/management/commands/tagmix.py +++ b/spa/management/commands/tagmix.py @@ -7,7 +7,8 @@ class Command(NoArgsCommand): def handle_noargs(self, **options): print "Tagging audio files" - mixes = Mix.objects.filter(uid='6e2576bc-aba9-4717-9f9f-dede31fc2eaa') + #mixes = Mix.objects.filter(uid='6e2576bc-aba9-4717-9f9f-dede31fc2eaa') + mixes = Mix.objects.all() for mix in mixes: print "Tagging: %s" % mix.title mix.create_mp3_tags()