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/Functions0D.py
parent069d21dddfef3361068afa987cc618f8fdaf48c3 (diff)
Made standard style modules compatible with Python 3.
Diffstat (limited to 'release/scripts/freestyle/style_modules/Functions0D.py')
-rwxr-xr-xrelease/scripts/freestyle/style_modules/Functions0D.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/freestyle/style_modules/Functions0D.py b/release/scripts/freestyle/style_modules/Functions0D.py
index 872b4e10286..fd7346df7df 100755
--- a/release/scripts/freestyle/style_modules/Functions0D.py
+++ b/release/scripts/freestyle/style_modules/Functions0D.py
@@ -18,7 +18,7 @@ class pyCurvilinearLengthF0D(UnaryFunction0DDouble):
i0d = inter.getObject()
s = i0d.getExactTypeName()
if (string.find(s, "CurvePoint") == -1):
- print "CurvilinearLengthF0D: not implemented yet for %s" % (s)
+ print("CurvilinearLengthF0D: not implemented yet for", s)
return -1
cp = castToCurvePoint(i0d)
return cp.t2d()