Fix name of asplit filter

This commit is contained in:
Davide Depau 2018-01-10 10:35:23 +01:00
parent 755fb843de
commit e7fbb288d4
No known key found for this signature in database
GPG Key ID: C7D999B6A55EFE86

View File

@ -54,7 +54,7 @@ def split(stream):
@filter_operator()
def asplit(stream):
return FilterNode(stream, split.__name__)
return FilterNode(stream, asplit.__name__)
@filter_operator()