FIX: Call function instead of bound method in tag

This commit is contained in:
Dominique Barton 2020-02-09 02:01:44 +01:00
parent cf8f539f02
commit 11091a9f37

View file

@ -55,7 +55,7 @@ class Tag:
args = [core]
if self.parameter:
args.append(self.parameter)
self.action(*args)
self.action.__func__(*args)
@property
def dict(self):