From d47e9be4fb204988ec659fc59882b2f5964afa3f Mon Sep 17 00:00:00 2001 From: "Sybren A. Stvel" Date: Thu, 22 Jan 2015 17:05:39 +1100 Subject: Fix: replaced Python module "imp" with "implib" Python 3.4.0 deprecated the "imp" module, and replaced it with "importlib". This changes imp.reload() into implib.reload(). Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1016 --- mesh_inset/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesh_inset/__init__.py') diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py index 947f43f0..d0654682 100644 --- a/mesh_inset/__init__.py +++ b/mesh_inset/__init__.py @@ -32,7 +32,7 @@ bl_info = { if "bpy" in locals(): - import imp + import importlib else: from . import geom from . import model -- cgit v1.2.3