Skip to content

Commit

Permalink
#409: added in missing self. for the config mechenisum
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Rosier committed Apr 20, 2017
1 parent c164523 commit 2a305b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ebu_tt_live/config/carriage.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def __init__(self, config, local_config):
super(FilesystemInput, self).__init__(config, local_config)
self.component = filesystem.FilesystemConsumerImpl()
self._fs_reader = filesystem.FilesystemReader(
manifest_path=config.manifest_file,
do_tail=config.tail,
manifest_path=self.config.manifest_file,
do_tail=self.config.tail,
custom_consumer=self.component
)
self.backend.register_component_start(self)
Expand Down

0 comments on commit 2a305b8

Please sign in to comment.