summaryrefslogtreecommitdiff
path: root/trove/cmd/manage.py
diff options
context:
space:
mode:
Diffstat (limited to 'trove/cmd/manage.py')
-rw-r--r--trove/cmd/manage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/trove/cmd/manage.py b/trove/cmd/manage.py
index c6e3c675..424919e7 100644
--- a/trove/cmd/manage.py
+++ b/trove/cmd/manage.py
@@ -46,7 +46,7 @@ class Commands(object):
def execute(self):
exec_method = getattr(self, CONF.action.name)
- args = inspect.getargspec(exec_method)
+ args = inspect.getfullargspec(exec_method)
args.args.remove('self')
kwargs = {}
for arg in args.args: