Remove dead code (unsupported Python 2.6)

This commit is contained in:
Peter Bittner 2016-05-19 00:04:15 +02:00
parent 83312e01f9
commit 849c551d55

View file

@ -8,10 +8,8 @@ import logging
from django import template
from django.template import Node, TemplateSyntaxError
try:
from importlib import import_module
except ImportError: # Python 2.6
from django.utils.importlib import import_module
from importlib import import_module
from analytical.utils import AnalyticalException