mirror of
https://github.com/blender/blender-addons.git
synced 2025-08-20 13:22:58 +00:00
Patch [#23759] more replace self.properties.foo --> self.foo for bf-extensions/trunk/py/scripts
by Filiciss Muhgue (filiciss). Thanks a lot! Part 2: Extensions
This commit is contained in:
@ -21,7 +21,7 @@ bl_addon_info = {
|
||||
"author": "Darknet",
|
||||
"version": (2,0),
|
||||
"blender": (2, 5, 3),
|
||||
"api": 31667,
|
||||
"api": 31847,
|
||||
"location": "File > Import ",
|
||||
"description": "Import Unreal Engine (.psk)",
|
||||
"warning": "",
|
||||
@ -576,7 +576,7 @@ class IMPORT_OT_psk(bpy.types.Operator):
|
||||
filepath = StringProperty(name="File Path", description="Filepath used for importing the OBJ file", maxlen= 1024, default= "")
|
||||
|
||||
def execute(self, context):
|
||||
getInputFilename(self.properties.filepath)
|
||||
getInputFilename(self.filepath)
|
||||
return {'FINISHED'}
|
||||
|
||||
def invoke(self, context, event):
|
||||
|
Reference in New Issue
Block a user