aboutsummaryrefslogtreecommitdiff
path: root/drutils/converters.py
diff options
context:
space:
mode:
Diffstat (limited to 'drutils/converters.py')
-rw-r--r--drutils/converters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/drutils/converters.py b/drutils/converters.py
index 640a7a6..4354af1 100644
--- a/drutils/converters.py
+++ b/drutils/converters.py
@@ -21,7 +21,7 @@ class AugmentedConverter(Converter):
if isinstance(converter, Converter):
converter = converter.convert
result = await converter(ctx, argument)
- if await maybe_coroutine(self.filter_function(result)):
+ if await maybe_coroutine(self.filter_function, result):
return result
raise UserInputError()