Skip to content

Commit

Permalink
bugfix in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Mar 21, 2020
1 parent 80308f1 commit c7fd140
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion django_form_builder/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@
'application/vnd.ms-excel',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'application/vnd.oasis.opendocument.spreadsheet',
'application/wps-office.xls',
)
TEXT_FILETYPE = ('text/plain',
'application/vnd.oasis.opendocument.text',
'application/msword,'
'application/msword'.
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
)
IMG_FILETYPE = ('image/jpeg', 'image/png', 'image/gif', 'image/x-ms-bmp')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='django-form-builder',
version='0.8.4',
version='0.8.5',
packages=find_packages(),
include_package_data=True,
license='BSD License',
Expand Down

0 comments on commit c7fd140

Please sign in to comment.