Remove another Python 2.6 hack

This commit is contained in:
Cyril Jouve 2019-02-07 10:32:40 +00:00 committed by Dave Page
parent 8efdc43177
commit a1ce6d9513

View File

@ -669,8 +669,7 @@ def create_app(app_name=None):
##########################################################################
# Minify output
##########################################################################
# HTMLMIN doesn't work with Python 2.6.
if not config.DEBUG and sys.version_info >= (2, 7):
if not config.DEBUG:
from flask_htmlmin import HTMLMIN
HTMLMIN(app)