Skip to content
This repository was archived by the owner on Jul 21, 2024. It is now read-only.

Commit d125d55

Browse files
authored
Merge pull request #135 from mreloaded/master
Fix for issues with unregistering classes.
2 parents bfe53e9 + facb529 commit d125d55

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

addon_updater_ops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def execute(self,context):
209209
# User preference check-now operator
210210
class addon_updater_check_now(bpy.types.Operator):
211211
bl_label = "Check now for "+updater.addon+" update"
212-
bl_idname = updater.addon+".updater_update_now"
212+
bl_idname = updater.addon+".updater_check_now"
213213
bl_description = "Check now for an update to the {x} addon".format(
214214
x=updater.addon)
215215
bl_options = {'REGISTER', 'INTERNAL'}
@@ -304,7 +304,7 @@ def execute(self,context):
304304

305305
class addon_updater_update_target(bpy.types.Operator):
306306
bl_label = updater.addon+" version target"
307-
bl_idname = updater.addon+".updater_check_now"
307+
bl_idname = updater.addon+".updater_update_target"
308308
bl_description = "Install a targeted version of the {x} addon".format(
309309
x=updater.addon)
310310
bl_options = {'REGISTER', 'INTERNAL'}

0 commit comments

Comments
 (0)