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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-09-27 04:58:38 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-09-27 04:58:38 +0400
commit1ff038397fd3256c45899667bf1c3cba83947fa3 (patch)
tree704140e7652ef20e6a2c9de99a560eebf4c58bc7 /release/scripts/freestyle/style_modules/freestyle_init.py
parent069d21dddfef3361068afa987cc618f8fdaf48c3 (diff)
Made standard style modules compatible with Python 3.
Diffstat (limited to 'release/scripts/freestyle/style_modules/freestyle_init.py')
-rw-r--r--release/scripts/freestyle/style_modules/freestyle_init.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/freestyle/style_modules/freestyle_init.py b/release/scripts/freestyle/style_modules/freestyle_init.py
index 5103cde1048..95f170ab071 100644
--- a/release/scripts/freestyle/style_modules/freestyle_init.py
+++ b/release/scripts/freestyle/style_modules/freestyle_init.py
@@ -1,2 +1,2 @@
-from Blender.Freestyle import *
-from Blender.Mathutils import Vector
+from Freestyle import *
+from Mathutils import Vector