Skip to content
Snippets Groups Projects
Commit c076b1dd authored by Martin Killenberg's avatar Martin Killenberg
Browse files

fix: PostPlot data path

parent fc63fa49
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ class PostPlot:
if not os.path.exists(storepath):
os.makedirs(storepath)
self.fig.savefig(storepath + '\\' + filename)
self.fig.savefig(os.path.join(storepath, filename))
# scaling time axes depending on the time unit
def scaling_time_axes(self, time_sec, time_unit):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment