From c58dc0d74c6b419d0b347022909732633c999859 Mon Sep 17 00:00:00 2001 From: resteve Date: Sun, 3 Apr 2016 09:05:33 +0200 Subject: [PATCH] Add Python3 support about import StringIO --- stock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock.py b/stock.py index 6f3f586..8e99a6c 100644 --- a/stock.py +++ b/stock.py @@ -1,7 +1,7 @@ # This file is part of stock_lot_csv module for Tryton. # The COPYRIGHT file at the top level of this repository contains the full # copyright notices and license terms. -from StringIO import StringIO +from io import StringIO from csv import reader from logging import getLogger from trytond.pool import Pool