Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_mesh_raw/__init__.py')
-rw-r--r--io_mesh_raw/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_mesh_raw/__init__.py b/io_mesh_raw/__init__.py
index 4a5ece92..69640932 100644
--- a/io_mesh_raw/__init__.py
+++ b/io_mesh_raw/__init__.py
@@ -33,11 +33,11 @@ bl_info = {
}
if "bpy" in locals():
- import imp
+ import importlib
if "import_raw" in locals():
- imp.reload(import_raw)
+ importlib.reload(import_raw)
if "export_raw" in locals():
- imp.reload(export_raw)
+ importlib.reload(export_raw)
else:
import bpy