Update reset message to show release version

This commit is contained in:
JonnyWong16 2020-03-06 15:39:15 -08:00
parent 823c9b3159
commit 097203162d
2 changed files with 5 additions and 3 deletions

View file

@ -3922,7 +3922,8 @@ class WebInterface(object):
@cherrypy.expose
@requireAuth(member_of("admin"))
def reset_git_install(self, **kwargs):
return self.do_state_change('reset', 'Resetting Git Install', 120)
return self.do_state_change('reset', 'Resetting to {}'.format(common.RELEASE), 120)
@cherrypy.expose
@requireAuth(member_of("admin"))