Skip to content
Snippets Groups Projects

fix bug for path's name when saving GPS file

Merged Lan Dam requested to merge i140_bug_gps_path_name into master
1 unresolved thread
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -356,7 +356,7 @@ class GPSDialog(QtWidgets.QWidget):
try:
folder_name = self.data_path.name
except AttributeError:
folder_name = self.data_path
folder_name = self.data_path.split(os.sep)[-1]
export_file_path = self.export_path / f'{folder_name}.gps.dat'
try:
Loading