remove duplicate import

This commit is contained in:
Campbell Barton 2012-06-10 00:22:18 +00:00
parent 02bcba341d
commit 0d6ffd925d

@ -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)