Fix typo
This commit is contained in:
parent
007efb1143
commit
642ebed084
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class StreamLayerMerger(TarLayerFormat):
|
|||
self.prefix_trie = marisa_trie.Trie()
|
||||
self.prefix_encountered = []
|
||||
|
||||
def after_tar_layer(stream, current_layer):
|
||||
def after_tar_layer(self, current_layer):
|
||||
# Update the tries.
|
||||
self.path_trie = marisa_trie.Trie(self.path_encountered)
|
||||
self.prefix_trie = marisa_trie.Trie(self.prefix_encountered)
|
||||
|
|
Reference in a new issue