mirror of
1
0
Fork 0

Removed unnecessary Meta.py executor

This commit is contained in:
Chris Sivanich 2014-04-24 08:55:19 -05:00
parent e4abb8b7a7
commit 94ce6e42bb
2 changed files with 0 additions and 17 deletions

View File

@ -1,4 +1,3 @@
from .executor import Executor
from .linker import Linker
from .commandrunner import CommandRunner
from .meta import Meta

View File

@ -1,16 +0,0 @@
from . import Executor
class Meta(Executor):
'''
Dummy handler for metadata support
'''
_directive = 'meta'
def can_handle(self, directive):
return directive == self._directive
def handle(self, directive, data):
if directive != self._directive:
raise ValueError('Header cannot handle directive %s' % directive)
return True