Removed filter in mc

This commit is contained in:
Fergal Moran
2013-06-22 18:15:46 +01:00
parent 925e34f8ed
commit 3b115b21ad

View File

@@ -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()