remove colons from filename to avoid conflicts with windows filesystem

This commit is contained in:
David Kilias 2020-03-23 09:48:32 +01:00
parent 07912d3021
commit bca60d510f

View file

@ -46,7 +46,7 @@ class FormApp(npyscreen.NPSAppManaged):
def get_filepath(self):
name = self.base_data.get_form_values_dict()['fullname']
date = datetime.datetime.now().replace(microsecond=0).isoformat()
fn = '{}_{}.json'.format('_'.join(name.lower().split()), date)
fn = '{}_{}.json'.format('_'.join(name.lower().split()), date.replace(':',''))
file_path = pathlib.Path(self.dir_path, fn)
return file_path