From: Christopher Allan Webber Date: Sun, 3 Mar 2013 16:38:06 +0000 (-0600) Subject: pdb.set_trace() in mediagoblin code is Not Allowed(TM), removing from audio code X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3ff006ef3b3b4dbd302ef8c30f5c3062e2954973;p=mediagoblin.git pdb.set_trace() in mediagoblin code is Not Allowed(TM), removing from audio code Of course, the version that appears here is not really dangerous because it's for the "call the file individually" form of debugging, but it isn't allowed anyway. This commit sponsored by Michael Faryniarz. Thanks! --- diff --git a/mediagoblin/media_types/audio/transcoders.py b/mediagoblin/media_types/audio/transcoders.py index f3d49c30..3a9a2125 100644 --- a/mediagoblin/media_types/audio/transcoders.py +++ b/mediagoblin/media_types/audio/transcoders.py @@ -14,7 +14,6 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -import pdb import logging import Image @@ -233,5 +232,3 @@ if __name__ == '__main__': thumbnailer = AudioThumbnailer() thumbnailer.spectrogram(*sys.argv[1:], width=640) - - pdb.set_trace()