Skip to content

Commit

Permalink
Merge pull request #169 from bb00/patch-1
Browse files Browse the repository at this point in the history
Fix unresolved function in "cloud_scripts" shell command.
  • Loading branch information
ChristopherHammond13 authored Jan 7, 2025
2 parents 419153c + 87e4676 commit 135a462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion falcon_toolkit/shell/prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 135a462

Please sign in to comment.