diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-02 11:40:41 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:14 -0700 |
commit | 9a2c66ca9ef763fa68dc09a483c02fe2ee02d78f (patch) | |
tree | fde0cac99182ba200d2274978dd425d6e4eb33b7 /mediagoblin/gmg_commands/reprocess.py | |
parent | 273c79513d82b03b99035dcfa47e839c61322483 (diff) | |
download | mediagoblin-9a2c66ca9ef763fa68dc09a483c02fe2ee02d78f.tar.lz mediagoblin-9a2c66ca9ef763fa68dc09a483c02fe2ee02d78f.tar.xz mediagoblin-9a2c66ca9ef763fa68dc09a483c02fe2ee02d78f.zip |
added image reprocessing
Diffstat (limited to 'mediagoblin/gmg_commands/reprocess.py')
-rw-r--r-- | mediagoblin/gmg_commands/reprocess.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mediagoblin/gmg_commands/reprocess.py b/mediagoblin/gmg_commands/reprocess.py index 0390c48d..f6b9e653 100644 --- a/mediagoblin/gmg_commands/reprocess.py +++ b/mediagoblin/gmg_commands/reprocess.py @@ -13,6 +13,7 @@ # # 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/>. +from mediagoblin import mg_globals from mediagoblin.db.models import MediaEntry from mediagoblin.gmg_commands import util as commands_util from mediagoblin.tools.translate import lazy_pass_to_ugettext as _ @@ -143,6 +144,8 @@ def reprocess(args): _set_media_state(args) _set_media_type(args) + import ipdb + ipdb.set_trace() if not args[0].media_id: return _reprocess_all(args) |