Fixed typos with receive

This commit is contained in:
JefftheBest1
2017-01-12 15:27:56 +11:00
committed by showell
parent 9de75f5167
commit f0afa3e8df
5 changed files with 6 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ def interactive_debug(sig, frame):
d.update(frame.f_globals) # Unless shadowed by global
d.update(frame.f_locals)
message = "Signal recieved : entering python shell.\nTraceback:\n"
message = "Signal received : entering python shell.\nTraceback:\n"
message += ''.join(traceback.format_stack(frame))
i = code.InteractiveConsole(d)
i.interact(message)