diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-09 13:56:23 -0500 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:15 -0700 |
commit | 55a10fef0ae97cb33c8393a7a25487c2666b4cf1 (patch) | |
tree | 90169c25ce2bfa91c33775682a3bced47ce214cf /mediagoblin/processing/__init__.py | |
parent | 85ead8ac3cf59aeee12ddd3b33ecfeb03c3aa946 (diff) | |
download | mediagoblin-55a10fef0ae97cb33c8393a7a25487c2666b4cf1.tar.lz mediagoblin-55a10fef0ae97cb33c8393a7a25487c2666b4cf1.tar.xz mediagoblin-55a10fef0ae97cb33c8393a7a25487c2666b4cf1.zip |
`gmg reprocess available --action-help` now tells you processor arguments!
Every reprocessing action possible can inform you of its command line
argument stuff! Is that awesome or what?
Diffstat (limited to 'mediagoblin/processing/__init__.py')
-rw-r--r-- | mediagoblin/processing/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/processing/__init__.py b/mediagoblin/processing/__init__.py index 95622b9d..9e77d2b2 100644 --- a/mediagoblin/processing/__init__.py +++ b/mediagoblin/processing/__init__.py @@ -126,7 +126,7 @@ class MediaProcessor(object): raise NotImplementedError @classmethod - def media_is_eligibile(self, media_entry): + def media_is_eligibile(cls, media_entry): raise NotImplementedError ############################### @@ -134,11 +134,11 @@ class MediaProcessor(object): ############################### @classmethod - def generate_parser(self): + def generate_parser(cls): raise NotImplementedError @classmethod - def parser_to_request(self, parser): + def parser_to_request(cls, parser): raise NotImplementedError ########################################## |