Changeset View
Changeset View
Standalone View
Standalone View
render_copy_settings/operator.py
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| return context.scene != None | return context.scene is not None | ||||
| def execute(self, context): | def execute(self, context): | ||||
| cp_sett = context.scene.render_copy_settings | cp_sett = context.scene.render_copy_settings | ||||
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| return context.scene != None | return context.scene is not None | ||||
| def execute(self, context): | def execute(self, context): | ||||
| cp_sett = context.scene.render_copy_settings | cp_sett = context.scene.render_copy_settings | ||||
| Context not available. | |||||
| @classmethod | @classmethod | ||||
| def poll(cls, context): | def poll(cls, context): | ||||
| return context.scene != None | return context.scene is not None | ||||
| def execute(self, context): | def execute(self, context): | ||||
| regex = None | regex = None | ||||
| Context not available. | |||||