We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 477c6e5 commit 5bc83dcCopy full SHA for 5bc83dc
arho_feature_template/core/plan_manager.py
@@ -191,8 +191,8 @@ def get_plan_json(self):
191
"""Serializes plan and plan outline to JSON"""
192
dialog = SerializePlan()
193
if dialog.exec_() == QDialog.Accepted:
194
- self.json_plan_path = dialog.plan_path_edit.text()
195
- 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())
196
197
plan_id = get_active_plan_id()
198
if not plan_id:
0 commit comments