*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit 273af970 authored by Schabbauer, Johannes's avatar Schabbauer, Johannes
Browse files

Bugfix: Messed up month and day for naming of list files

parent 49f7d248
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ class MCS8AWorker(Worker):
self.device._send_dll_command(f"range={int(range_int)}")
def get_new_mpapath(self):
mpaname = self.device_name + "_" + datetime.now().strftime("%Y-%d-%m_%H-%M-%S") + ".mpa"
mpaname = self.device_name + "_" + datetime.now().strftime("%Y-%m-%d_%H-%M-%S") + ".mpa"
return self.base_dir + "\\" + mpaname
def transition_to_buffered(self, device_name, h5_file, initial_values, fresh):
......
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