diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-14 10:41:16 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:21 -0700 |
commit | 2834d84c0cd57c7fd6294678d7872ecf55dc55ba (patch) | |
tree | 71167d289f7448b83cd7f06c475b43bf36bd014a | |
parent | a3cc93c6af284c7f3cd6712611bfc6fc0f040a4f (diff) | |
download | mediagoblin-2834d84c0cd57c7fd6294678d7872ecf55dc55ba.tar.lz mediagoblin-2834d84c0cd57c7fd6294678d7872ecf55dc55ba.tar.xz mediagoblin-2834d84c0cd57c7fd6294678d7872ecf55dc55ba.zip |
Cleanup image common processor
-rw-r--r-- | mediagoblin/media_types/image/processing.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mediagoblin/media_types/image/processing.py b/mediagoblin/media_types/image/processing.py index c3dfc5fe..3b3c2b0f 100644 --- a/mediagoblin/media_types/image/processing.py +++ b/mediagoblin/media_types/image/processing.py @@ -131,21 +131,6 @@ class CommonImageProcessor(MediaProcessor): """ Provides a base for various media processing steps """ - # Common resizing step - def resize_step(self): - pass - - @classmethod - def _add_width_height_args(cls, parser): - parser.add_argument( - "--width", default=None, - help=( - "Width of the resized image (if not using defaults)")) - parser.add_argument( - "--height", default=None, - help=( - "Height of the resized image (if not using defaults)")) - def common_setup(self): """ Set up the workbench directory and pull down the original file |