mirror of
https://github.com/blender/blender-addons.git
synced 2025-08-01 16:06:15 +00:00
POV : fix registering
Fix : Removed some duplicate class that caused addon register / unregister to fail after previous commit
This commit is contained in:
@ -17,7 +17,9 @@
|
||||
# #**** END GPL LICENSE BLOCK #****
|
||||
|
||||
# <pep8 compliant>
|
||||
|
||||
"""Wirte the POV file using this file's functions and some from other modules then render it."""
|
||||
|
||||
import bpy
|
||||
import subprocess
|
||||
import os
|
||||
@ -1807,7 +1809,11 @@ class RunPovTextRender(Operator):
|
||||
return {'FINISHED'}
|
||||
|
||||
|
||||
classes = (PovrayRender, RenderPovTexturePreview, RunPovTextRender)
|
||||
classes = (
|
||||
PovrayRender,
|
||||
RenderPovTexturePreview,
|
||||
RunPovTextRender,
|
||||
)
|
||||
|
||||
|
||||
def register():
|
||||
|
Reference in New Issue
Block a user