Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
65756bbf
Commit
65756bbf
authored
Dec 19, 2013
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly format errors/warnings.
STUD-1063
parent
332477b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cms/djangoapps/contentstore/views/assets.py
+2
-2
No files found.
cms/djangoapps/contentstore/views/assets.py
View file @
65756bbf
...
...
@@ -124,7 +124,7 @@ def _upload_asset(request, location):
modulestore
()
.
get_item
(
old_location
)
except
:
# no return it as a Bad Request response
logging
.
error
(
'Could not find course'
+
old_location
)
logging
.
error
(
"Could not find course:
%
s"
,
old_location
)
return
HttpResponseBadRequest
()
# compute a 'filename' which is similar to the location formatting, we're
...
...
@@ -214,7 +214,7 @@ def _update_asset(request, location, asset_id):
# remove from any caching
del_cached_content
(
thumbnail_content
.
location
)
except
:
logging
.
warning
(
'Could not delete thumbnail:
'
+
content
.
thumbnail_location
)
logging
.
warning
(
'Could not delete thumbnail:
%
s'
,
content
.
thumbnail_location
)
# delete the original
contentstore
()
.
delete
(
content
.
get_id
())
...
...
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