From 0d6ffd925df0c4a5658d6195ca0e535f0e09fdac Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 10 Jun 2012 00:22:18 +0000 Subject: remove duplicate import --- release/scripts/modules/bpy/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'release/scripts/modules/bpy') diff --git a/release/scripts/modules/bpy/utils.py b/release/scripts/modules/bpy/utils.py index 2e6d1bf8fbc..4e8179775d5 100644 --- a/release/scripts/modules/bpy/utils.py +++ b/release/scripts/modules/bpy/utils.py @@ -345,8 +345,7 @@ def preset_paths(subdir): dirs.append(directory) # Find addons preset paths - import addon_utils - for path in addon_utils.paths(): + for path in _addon_utils.paths(): directory = _os.path.join(path, "presets", subdir) if _os.path.isdir(directory): dirs.append(directory) -- cgit v1.2.3