We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99dc94e commit dc8d379Copy full SHA for dc8d379
arho_feature_template/core/plan_manager.py
@@ -142,8 +142,8 @@ def get_plan_json(self):
142
"""Serializes plan and plan outline to JSON"""
143
dialog = SerializePlan()
144
if dialog.exec_() == QDialog.Accepted:
145
- self.json_plan_path = dialog.plan_path_edit.text()
146
- self.json_plan_outline_path = dialog.plan_outline_path_edit.text()
+ self.json_plan_path = str(dialog.plan_file.filePath())
+ self.json_plan_outline_path = str(dialog.plan_outline_file.filePath())
147
148
plan_id = get_active_plan_id()
149
if not plan_id:
0 commit comments