remove colons from filename to avoid conflicts with windows filesystem #17

Merged
tux merged 1 commit from windows-compatible-filenames into master 2020-03-23 10:08:42 +01:00

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