style: Fix missing :s between dict keys and values.

This commit is contained in:
Tim Abbott
2016-04-27 22:22:13 -07:00
parent 02ab03ec7a
commit aebe7334a4
3 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ import signal
def interactive_debug(sig, frame):
"""Interrupt running process, and provide a python prompt for
interactive debugging."""
d={'_frame':frame} # Allow access to frame object.
d = {'_frame': frame} # Allow access to frame object.
d.update(frame.f_globals) # Unless shadowed by global
d.update(frame.f_locals)