fnp
/
audio.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix
[audio.git]
/
apps
/
archive
/
views.py
diff --git
a/apps/archive/views.py
b/apps/archive/views.py
index
df8fb77
..
3ee87cb
100644
(file)
--- a/
apps/archive/views.py
+++ b/
apps/archive/views.py
@@
-63,10
+63,11
@@
def file_new(request, filename):
def move_to_archive(request, filename):
""" move a new file to the unmanaged files dir """
def move_to_archive(request, filename):
""" move a new file to the unmanaged files dir """
- old_path = os.path.join(settings.NEW_PATH, filename)
+ filename_str = filename.encode('utf-8')
+ old_path = os.path.join(settings.NEW_PATH, filename_str)
if not os.path.isdir(settings.UNMANAGED_PATH):
os.makedirs(settings.UNMANAGED_PATH)
if not os.path.isdir(settings.UNMANAGED_PATH):
os.makedirs(settings.UNMANAGED_PATH)
- new_path = os.path.join(settings.UNMANAGED_PATH, filename)
+ new_path = os.path.join(settings.UNMANAGED_PATH, filename
_str
)
if not os.path.isfile(old_path):
raise Http404
if not os.path.isfile(old_path):
raise Http404
@@
-86,10
+87,11
@@
def move_to_archive(request, filename):
def move_to_new(request, filename):
""" move a unmanaged file to new files dir """
def move_to_new(request, filename):
""" move a unmanaged file to new files dir """
- old_path = os.path.join(settings.UNMANAGED_PATH, filename)
+ filename_str = filename.encode('utf-8')
+ old_path = os.path.join(settings.UNMANAGED_PATH, filename_str)
if not os.path.isdir(settings.NEW_PATH):
os.makedirs(settings.NEW_PATH)
if not os.path.isdir(settings.NEW_PATH):
os.makedirs(settings.NEW_PATH)
- new_path = os.path.join(settings.NEW_PATH, filename)
+ new_path = os.path.join(settings.NEW_PATH, filename
_str
)
if not os.path.isfile(old_path):
raise Http404
if not os.path.isfile(old_path):
raise Http404
@@
-163,7
+165,7
@@
def list_unmanaged(request):
def file_unmanaged(request, filename):
division = 'unmanaged'
def file_unmanaged(request, filename):
division = 'unmanaged'
- tags = mutagen.File(os.path.join(settings.UNMANAGED_PATH, filename))
+ tags = mutagen.File(os.path.join(settings.UNMANAGED_PATH, filename
.encode('utf-8')
))
err_exists = request.GET.get('exists')
return render(request, "archive/file_unmanaged.html", locals())
err_exists = request.GET.get('exists')
return render(request, "archive/file_unmanaged.html", locals())