Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
kastiglione committed Apr 25, 2019
1 parent 7c9bc87 commit c92cc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/FBDebugCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def run(self, arguments, options):
# instead. This is done because HandleCommand('continue') has strange
# behavior, while calling Continue() works as expected.
last = commands[-1]
if self.is_continue(interpreter, last)
if self.is_continue(interpreter, last):
self.context.process.Continue()
else:
self.run_command(interpreter, last)
Expand Down

1 comment on commit c92cc4c

@DerekSelander
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😃🙌🍻

Please sign in to comment.