From 3d0a0dfa78225c570deac3482cc88352e7f3674c Mon Sep 17 00:00:00 2001 From: Hardirc Date: Fri, 6 Mar 2015 20:39:30 -0500 Subject: [PATCH] Fix single double quote for triple double quote docstring --- gluon/debug.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gluon/debug.py b/gluon/debug.py index 92bce215..12db5a93 100644 --- a/gluon/debug.py +++ b/gluon/debug.py @@ -56,13 +56,13 @@ debugger = pdb.Pdb(completekey=None, stdin=pipe_in, stdout=pipe_out,) def set_trace(): - "breakpoint shortcut (like pdb)" + """breakpoint shortcut (like pdb)""" logger.info("DEBUG: set_trace!") debugger.set_trace(sys._getframe().f_back) def stop_trace(): - "stop waiting for the debugger (called atexit)" + """stop waiting for the debugger (called atexit)""" # this should prevent communicate is wait forever a command result # and the main thread has finished logger.info("DEBUG: stop_trace!") @@ -72,7 +72,7 @@ def stop_trace(): def communicate(command=None): - "send command to debbuger, wait result" + """send command to debbuger, wait result""" if command is not None: logger.info("DEBUG: sending command %s" % command) pipe_in.write(command) @@ -97,7 +97,7 @@ run_lock = RLock() def check_interaction(fn): - "Decorator to clean and prevent interaction when not available" + """Decorator to clean and prevent interaction when not available""" def check_fn(self, *args, **kwargs): interact_lock.acquire() try: @@ -110,7 +110,7 @@ def check_interaction(fn): class WebDebugger(qdb.Frontend): - "Qdb web2py interface" + """Qdb web2py interface""" def __init__(self, pipe, completekey='tab', stdin=None, stdout=None): qdb.Frontend.__init__(self, pipe)