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>2019-04-19 08:36:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-19 08:36:07 +0300
commit3633a79789d7b47fece7924dc6fe99432fa5cac2 (patch)
treeeb52bf20417bac8fb09c113d5c2c16c664c1f476 /intern/cycles/app
parent5b0f0421ef1d841d7389b504057dbf76998007c7 (diff)
Cleanup: correct misleading classmethod arg
Diffstat (limited to 'intern/cycles/app')
-rw-r--r--intern/cycles/app/io_export_cycles_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/app/io_export_cycles_xml.py b/intern/cycles/app/io_export_cycles_xml.py
index a1b42f72f7c..d2c6dc493e8 100644
--- a/intern/cycles/app/io_export_cycles_xml.py
+++ b/intern/cycles/app/io_export_cycles_xml.py
@@ -64,7 +64,7 @@ class RenderButtonsPanel():
bl_context = "render"
@classmethod
- def poll(self, context):
+ def poll(cls, context):
return context.engine == 'CYCLES'