Rename step to stepi

This commit is contained in:
Charles Cooper 2019-05-12 06:39:40 -07:00
parent 8aed791e15
commit b52ea7efde
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class VyperDebugCmd(cmd.Cmd):
self.stdout.write('Exiting vdb' + '\n')
super().postloop()
def do_step(self, *args):
def do_stepi(self, *args):
""" Step to next instruction """
self.step_mode = True
return True