diff --git a/falcon_toolkit/shell/prompt.py b/falcon_toolkit/shell/prompt.py index 31cefa1..048fef4 100644 --- a/falcon_toolkit/shell/prompt.py +++ b/falcon_toolkit/shell/prompt.py @@ -501,7 +501,7 @@ def do_cd(self, args): @with_argparser(PARSERS.cloud_scripts, preserve_quotes=False) def do_cloud_scripts(self, args): """List scripts saved in the cloud. These can be run with runscript -CloudFile.""" - scripts = self.client.rtr.query_scripts() + scripts = self.client.rtr.describe_scripts() sorted_scripts = sorted( scripts.items(), key=lambda x: x[1]["name"],