Fix imap is map in python 3

This commit is contained in:
Labrys of Knossos 2018-12-15 13:24:31 -05:00
commit 6bba210fd0

View file

@ -2,7 +2,8 @@
import os
import platform
from collections import defaultdict
from itertools import imap
from six.moves import map as imap
from .exceptions import DelugeRPCError
from .protocol import DelugeRPCRequest, DelugeRPCResponse