should work now fine !! testing it

This commit is contained in:
tillraab 2022-05-09 11:11:22 +02:00
parent be1a011e20
commit d6267cff2b

View File

@ -98,7 +98,7 @@ class Configuration():
self.channels = self.n_rows * self.n_cols + self.n_extra
def create_file_structure(self):
start_str = ('%2.f_%2.f' % (self.start_clock[0], self.start_clock[1])).replace(' ', '0')
start_str = ('-%2.f_%2.f' % (self.start_clock[0], self.start_clock[1])).replace(' ', '0')
self.path = os.path.join(self._base_path, self.now.strftime('-'.join(self.path_format.split('-')[:3])) + start_str) # ToDo: Edit here
if not os.path.exists(self.path):
os.makedirs(self.path)