From d6267cff2ba1137b303475bfce21ed74814277eb Mon Sep 17 00:00:00 2001 From: tillraab Date: Mon, 9 May 2022 11:11:22 +0200 Subject: [PATCH] should work now fine !! testing it --- grid_recorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grid_recorder.py b/grid_recorder.py index 0970b4a..5e66a03 100644 --- a/grid_recorder.py +++ b/grid_recorder.py @@ -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)