ソースを参照

Fix versioning for color inherit socket

Joseph Brandenburg 2 ヶ月 前
コミット
2fbfaacb0c
1 ファイル変更1 行追加1 行削除
  1. 1 1
      versioning.py

+ 1 - 1
versioning.py

@@ -155,7 +155,7 @@ def up_0_12_1_add_inherit_color(*args, **kwargs):
     current_sub_version = node.id_data.mantis_version[2]
     if  current_major_version > 0: return# major version must be 0
     if current_minor_version > 12: return# minor version must be 12 or less
-    if current_minor_version == 12 and current_sub_version < 9: return # sub version must be 8 or less
+    if current_minor_version == 12 and current_sub_version > 9: return # sub version must be 8 or less
     # I am having it do 8 or less because there was a bug in this function prior to 9
     # sub version doesn't matter since any subversion of 11 should trigger this task
     prPurple(f"Adding \"Inherit Color\" socket to {node.name}")