From e43301facb1b86fcb0df33ff112e47f96615c253 Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Wed, 31 Dec 2014 17:09:21 -0500 Subject: [PATCH] Fix typo in __init__.py Signed-off-by: Ian Bell --- wrappers/Python/CoolProp/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wrappers/Python/CoolProp/__init__.py b/wrappers/Python/CoolProp/__init__.py index c8edcca9..1dc6315d 100644 --- a/wrappers/Python/CoolProp/__init__.py +++ b/wrappers/Python/CoolProp/__init__.py @@ -5,6 +5,7 @@ from __future__ import absolute_import from . import constants if constants.__file__.rsplit('.', 1)[1] not in ['pyc','pyo','py']: print("constants shared library has been removed. Please restart your python code") + import os os.remove(constants.__file__) quit()