aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-03-03 10:38:06 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-03-03 10:38:06 -0600
commit3ff006ef3b3b4dbd302ef8c30f5c3062e2954973 (patch)
tree87c5e4036445c463bb0d51d3e821ac27e3da2e99
parent29adab4651cd2485441a08bb97ae0165e5be0017 (diff)
downloadmediagoblin-3ff006ef3b3b4dbd302ef8c30f5c3062e2954973.tar.lz
mediagoblin-3ff006ef3b3b4dbd302ef8c30f5c3062e2954973.tar.xz
mediagoblin-3ff006ef3b3b4dbd302ef8c30f5c3062e2954973.zip
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!
-rw-r--r--mediagoblin/media_types/audio/transcoders.py3
1 files changed, 0 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>.
-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()