From ea320d7463d568e69146f9b5af86925f8dbc236a Mon Sep 17 00:00:00 2001 From: Oscar-Garcia Date: Mon, 20 Jun 2016 09:41:22 +0200 Subject: [PATCH] Update debug_statement_hook.py Adds celery rdb as debugger: http://docs.celeryproject.org/en/latest/tutorials/debugging.html --- pre_commit_hooks/debug_statement_hook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pre_commit_hooks/debug_statement_hook.py b/pre_commit_hooks/debug_statement_hook.py index 8e02480..52fe72e 100644 --- a/pre_commit_hooks/debug_statement_hook.py +++ b/pre_commit_hooks/debug_statement_hook.py @@ -7,7 +7,7 @@ import collections import traceback -DEBUG_STATEMENTS = set(['pdb', 'ipdb', 'pudb', 'q']) +DEBUG_STATEMENTS = set(['pdb', 'ipdb', 'pudb', 'q', 'rdb']) DebugStatement = collections.namedtuple(