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:
authorCampbell Barton <ideasman42@gmail.com>2018-09-11 11:15:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-11 11:15:55 +0300
commitb05f9e35cbc919c5b98e77bd8e52fc959f3fdd88 (patch)
tree38166840f07a713e7246480aebd038b15dc5f95b /release/scripts/startup/bl_operators/clip.py
parent29fa45b695b3d851a33e76ff5904150f63c231b9 (diff)
Cleanup: unused variables
Diffstat (limited to 'release/scripts/startup/bl_operators/clip.py')
-rw-r--r--release/scripts/startup/bl_operators/clip.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index 3c9fc012eeb..065f4560ce9 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -662,7 +662,6 @@ class CLIP_OT_setup_tracking_scene(Operator):
else:
setup_collection_recursively(collection.children, collection_name, attr_name)
- collection = context.collection
collections = context.scene.collection.children
vlayers = context.scene.view_layers
@@ -971,7 +970,7 @@ class CLIP_OT_setup_tracking_scene(Operator):
def execute(self, context):
scene = context.scene
- current_active_layer = scene.active_layer
+ # current_active_layer = scene.active_layer
self._setupScene(context)
self._setupWorld(context)