From cb8d2f8a74b1ff78a96a883251a6aba03107fe3c Mon Sep 17 00:00:00 2001 From: jinder1s Date: Fri, 4 Oct 2019 11:18:38 -0400 Subject: [PATCH] removing pdb --- common/djangoapps/terrain/stubs/http.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/djangoapps/terrain/stubs/http.py b/common/djangoapps/terrain/stubs/http.py index c3527b67b9..fcb75c1042 100644 --- a/common/djangoapps/terrain/stubs/http.py +++ b/common/djangoapps/terrain/stubs/http.py @@ -16,7 +16,6 @@ import six.moves.urllib.request # pylint: disable=import-error from lazy import lazy from six.moves.BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer # pylint: disable=import-error from six.moves.socketserver import ThreadingMixIn # pylint: disable=import-error -import pdb LOGGER = getLogger(__name__) @@ -105,7 +104,6 @@ class StubHttpRequestHandler(BaseHTTPRequestHandler, object): Retrieve the request POST parameters from the client as a dictionary. If no POST parameters can be interpreted, return an empty dict. """ - # pdb.set_trace() contents = self.request_content.decode() # The POST dict will contain a list of values for each key.