Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-wiki
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
OpenEdx
django-wiki
Commits
d264f480
Commit
d264f480
authored
Aug 09, 2012
by
benjaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Further frustations perhaps fixed on file upload issues
parent
751c21ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
wiki/plugins/attachments/views.py
+1
-2
No files found.
wiki/plugins/attachments/views.py
View file @
d264f480
...
...
@@ -13,7 +13,6 @@ from django.views.generic.base import TemplateView, View
from
wiki.core.http
import
send_file
from
django.http
import
Http404
from
django.db
import
transaction
import
os
class
AttachmentView
(
ArticleMixin
,
FormView
):
...
...
@@ -47,7 +46,7 @@ class AttachmentView(ArticleMixin, FormView):
except
models
.
IllegalFileExtension
,
e
:
transaction
.
rollback
()
messages
.
error
(
self
.
request
,
_
(
u'Your file could not be saved:
%
s'
)
%
e
)
except
IOError
:
except
Exception
:
transaction
.
rollback
()
messages
.
error
(
self
.
request
,
_
(
u'Your file could not be saved, probably because of a permission error on the web server.'
))
...
...
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