[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4123] contrib/py/scripts/addons/ sequencer_extra_actions/operators_extra_actions.py: update for changes in blender

Campbell Barton ideasman42 at gmail.com
Wed Jan 2 17:19:19 CET 2013


Revision: 4123
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4123
Author:   campbellbarton
Date:     2013-01-02 16:19:17 +0000 (Wed, 02 Jan 2013)
Log Message:
-----------
update for changes in blender

Modified Paths:
--------------
    contrib/py/scripts/addons/sequencer_extra_actions/operators_extra_actions.py

Modified: contrib/py/scripts/addons/sequencer_extra_actions/operators_extra_actions.py
===================================================================
--- contrib/py/scripts/addons/sequencer_extra_actions/operators_extra_actions.py	2013-01-02 16:09:32 UTC (rev 4122)
+++ contrib/py/scripts/addons/sequencer_extra_actions/operators_extra_actions.py	2013-01-02 16:19:17 UTC (rev 4123)
@@ -802,7 +802,7 @@
         strip = functions.act_strip(context)
         scn = context.scene
         base_dir = bpy.path.abspath(strip.directory)
-        strip_elem = strip.getStripElem(scn.frame_current)
+        strip_elem = strip.strip_elem_from_frame(scn.frame_current)
         path = base_dir + strip_elem.filename
 
         try:
@@ -852,7 +852,7 @@
 
         elif strip.type == 'IMAGE':
             base_dir = bpy.path.abspath(strip.directory)
-            strip_elem = strip.getStripElem(scn.frame_current)
+            strip_elem = strip.strip_elem_from_frame(scn.frame_current)
             elem_name = strip_elem.filename
             path = base_dir + elem_name
 



More information about the Bf-extensions-cvs mailing list