Remove `image/gif` from supported_image_types of LaTeX writer (ref #2272)

This commit is contained in:
Takeshi KOMIYA 2016-02-16 12:52:50 +09:00
parent d9be95a6d3
commit 881e086e50
2 changed files with 2 additions and 2 deletions

View File

@ -11,6 +11,7 @@ Features added
Bugs fixed
----------
* Remove ``image/gif`` from supported_image_types of LaTeX writer (#2272)
Documentation
-------------

View File

@ -36,8 +36,7 @@ class LaTeXBuilder(Builder):
"""
name = 'latex'
format = 'latex'
supported_image_types = ['application/pdf', 'image/png',
'image/gif', 'image/jpeg']
supported_image_types = ['application/pdf', 'image/png', 'image/jpeg']
usepackages = []
def init(self):