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 Bugs fixed
---------- ----------
* Remove ``image/gif`` from supported_image_types of LaTeX writer (#2272)
Documentation Documentation
------------- -------------

View File

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