Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
django-panik-nonstop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
radiopanik
django-panik-nonstop
Commits
93d12729
Commit
93d12729
authored
Feb 14, 2018
by
fred
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "encode filenames in utf-8"
Forgot to revert this one
parent
fbd0ff10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
nonstop/views.py
nonstop/views.py
+1
-1
No files found.
nonstop/views.py
View file @
93d12729
...
@@ -203,7 +203,7 @@ class UploadTracksView(FormView):
...
@@ -203,7 +203,7 @@ class UploadTracksView(FormView):
datetime
.
datetime
.
today
()
.
strftime
(
'
%
y
%
m
%
d'
),
datetime
.
datetime
.
today
()
.
strftime
(
'
%
y
%
m
%
d'
),
artist_name
[:
50
]
.
replace
(
'/'
,
' '
)
.
strip
(),
artist_name
[:
50
]
.
replace
(
'/'
,
' '
)
.
strip
(),
track_title
[:
80
]
.
replace
(
'/'
,
' '
)
.
strip
(),
track_title
[:
80
]
.
replace
(
'/'
,
' '
)
.
strip
(),
os
.
path
.
splitext
(
f
.
name
)[
-
1
])
.
encode
(
'utf-8'
)
os
.
path
.
splitext
(
f
.
name
)[
-
1
])
default_storage
.
save
(
os
.
path
.
join
(
'nonstop'
,
'tracks'
,
filepath
),
content
=
f
)
default_storage
.
save
(
os
.
path
.
join
(
'nonstop'
,
'tracks'
,
filepath
),
content
=
f
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment