diff --git a/odo/utils.py b/odo/utils.py index 51a9b430..43be7a94 100644 --- a/odo/utils.py +++ b/odo/utils.py @@ -127,7 +127,7 @@ def keywords(func): """ if isinstance(func, type): return keywords(func.__init__) - return inspect.getargspec(func).args + return inspect.getfullargspec(func).args def cls_name(cls):