Skip to content

Commit 135a462

Browse files
Merge pull request #169 from bb00/patch-1
Fix unresolved function in "cloud_scripts" shell command.
2 parents 419153c + 87e4676 commit 135a462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

falcon_toolkit/shell/prompt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def do_cd(self, args):
501501
@with_argparser(PARSERS.cloud_scripts, preserve_quotes=False)
502502
def do_cloud_scripts(self, args):
503503
"""List scripts saved in the cloud. These can be run with runscript -CloudFile."""
504-
scripts = self.client.rtr.query_scripts()
504+
scripts = self.client.rtr.describe_scripts()
505505
sorted_scripts = sorted(
506506
scripts.items(),
507507
key=lambda x: x[1]["name"],

0 commit comments

Comments
 (0)