From d43c9abf76c6a5bdf6dfa2d645840f809c14eabd Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 18 Sep 2010 02:01:34 +0200 Subject: [PATCH] remove debug --- pandora/archive/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora/archive/views.py b/pandora/archive/views.py index 62a35ced2..3d9c16f4d 100644 --- a/pandora/archive/views.py +++ b/pandora/archive/views.py @@ -72,15 +72,15 @@ def api_update(request): volume, created = models.Volume.objects.get_or_create(user=user, name=data['volume']) all_files = [] for f in data['files']: - print f + #print f path = f['path'] folder = path.split('/') name = folder.pop() if folder and folder[-1] in ('Extras', 'Versions', 'DVDs'): name = '/'.join([folder.pop(), name]) folder = '/'.join(folder) - print folder - print name + #print folder + #print name f['folder'] = folder f['name'] = name oshash = f['oshash']