Add Python3 support about import StringIO

This commit is contained in:
resteve 2016-04-03 09:05:33 +02:00
parent 59e68f4efa
commit c58dc0d74c

View file

@ -1,7 +1,7 @@
# This file is part of stock_lot_csv module for Tryton. # This file is part of stock_lot_csv module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full # The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms. # copyright notices and license terms.
from StringIO import StringIO from io import StringIO
from csv import reader from csv import reader
from logging import getLogger from logging import getLogger
from trytond.pool import Pool from trytond.pool import Pool