Skip to content

Commit 23d9548

Browse files
committed
fix: 🐛 crashing when enumerating exports
1 parent afa04f1 commit 23d9548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/new_analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def new_analysis(
220220
outputs = analysis.get_all_exportable_outputs()
221221
print("You now have the option to export the following outputs:")
222222
for output in outputs:
223-
print("- " + output.name)
223+
print("- " + output.descriptive_qualified_name)
224224
print("")
225225

226226
export_format = export_format_prompt()

0 commit comments

Comments
 (0)