get_step_info 小bug

This commit is contained in:
曹前明 2022-06-29 09:54:13 +08:00
parent f2af3e4a8d
commit de1a17f166
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class WpmService(object):
if i.step == nowstep and get_next:
try:
used_step = used_steps[index+1]
return used_step, used_step.need_test, used_step.reuse_form
return used_step.step, used_step.need_test, used_step.reuse_form
except:
return nowstep, i.need_test, i.reuse_form
elif i.step == nowstep and get_next == False: