diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-12 11:00:15 -0500 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:17 -0700 |
commit | 98d1fa3beddfc602c541fe7f538ca882ad6c7e9c (patch) | |
tree | c585a4fdd5d11a52338fc62544aa527a0ac39ba5 /mediagoblin/processing | |
parent | 5b546d6533ce80a55f28546098bfff7fa5caa474 (diff) | |
download | mediagoblin-98d1fa3beddfc602c541fe7f538ca882ad6c7e9c.tar.lz mediagoblin-98d1fa3beddfc602c541fe7f538ca882ad6c7e9c.tar.xz mediagoblin-98d1fa3beddfc602c541fe7f538ca882ad6c7e9c.zip |
Fixing normal submission of media (well for images anyway)
Diffstat (limited to 'mediagoblin/processing')
-rw-r--r-- | mediagoblin/processing/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mediagoblin/processing/__init__.py b/mediagoblin/processing/__init__.py index 9493091b..684ffe04 100644 --- a/mediagoblin/processing/__init__.py +++ b/mediagoblin/processing/__init__.py @@ -223,6 +223,8 @@ class ProcessingManager(object): try: processor = self.processors[key] except KeyError: + import pdb + pdb.set_trace() raise ProcessorDoesNotExist( "'%s' processor does not exist for this media type" % key) |