Skip to content
Snippets Groups Projects
Commit cb54d16e authored by Pavel Kácha's avatar Pavel Kácha
Browse files

LaBrea: Py3 compat

parent 990ccdf7
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,13 @@ import atexit
import logging
import logging.handlers
import os.path as pth
from itertools import izip
from collections import namedtuple
try:
from itertools import izip
except ImportError:
izip = zip
try:
from collections import OrderedDict
except ImportError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment