Skip to content
Snippets Groups Projects
Unverified Commit 6f6a69ec authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[FIX] transifex: allow both python import

Now that @jem-odoo has finally migrated to python3
parent 9ae6feb9
Branches
Tags
No related merge requests found
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from configparser import ConfigParser
try:
from configparser import ConfigParser
except ImportError:
# python2 import
from ConfigParser import ConfigParser
from os.path import join as opj
import os
import werkzeug
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment