From 136c86636e5ad7fe8d66371a3fc9e0cf022e3193 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Wed, 8 Nov 2017 09:36:21 -0500 Subject: [PATCH] Make the minimal Python interface compatible with Python 3 Use relative imports in the package, compatible with Python 2 and 3 --- interfaces/python_minimal/cantera/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/python_minimal/cantera/__init__.py b/interfaces/python_minimal/cantera/__init__.py index 861a4e1f1..005271e59 100644 --- a/interfaces/python_minimal/cantera/__init__.py +++ b/interfaces/python_minimal/cantera/__init__.py @@ -1,2 +1,2 @@ -import ck2cti -import ctml_writer +from . import ck2cti +from . import ctml_writer