Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOHViewer
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
SOHViewer
Merge requests
!162
Couldn't fetch the linked file.
fix bug for path's name when saving GPS file
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix bug for path's name when saving GPS file
i140_bug_gps_path_name
into
master
Overview
1
Commits
4
Pipelines
3
Changes
1
1 unresolved thread
Hide all comments
Merged
Lan Dam
requested to merge
i140_bug_gps_path_name
into
master
1 year ago
Overview
1
Commits
4
Pipelines
3
Changes
1
1 unresolved thread
Hide all comments
Expand
closes
#140 (closed)
Edited
1 year ago
by
Lan Dam
👍
0
👎
0
Merge request reports
Viewing commit
05f82f78
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
05f82f78
fix bug in getting folder name for gps export
· 05f82f78
Lan Dam
authored
1 year ago
sohstationviewer/view/plotting/gps_plot/gps_dialog.py
+
1
−
1
Options
@@ -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