[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [37042] trunk/blender/release/scripts/ modules/bpy_extras/image_utils.py: fix for mistake in case insensitive image load.

Campbell Barton ideasman42 at gmail.com
Tue May 31 11:55:50 CEST 2011


Revision: 37042
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=37042
Author:   campbellbarton
Date:     2011-05-31 09:55:50 +0000 (Tue, 31 May 2011)
Log Message:
-----------
fix for mistake in case insensitive image load.

Modified Paths:
--------------
    trunk/blender/release/scripts/modules/bpy_extras/image_utils.py

Modified: trunk/blender/release/scripts/modules/bpy_extras/image_utils.py
===================================================================
--- trunk/blender/release/scripts/modules/bpy_extras/image_utils.py	2011-05-31 09:51:46 UTC (rev 37041)
+++ trunk/blender/release/scripts/modules/bpy_extras/image_utils.py	2011-05-31 09:55:50 UTC (rev 37042)
@@ -89,7 +89,7 @@
 
     for filepath_test in variants:
         if ncase_cmp:
-            ncase_variants = filepath_test, bpy.path.resolve_ncase(filepath)
+            ncase_variants = filepath_test, bpy.path.resolve_ncase(filepath_test)
         else:
             ncase_variants = (filepath_test, )
 




More information about the Bf-blender-cvs mailing list