remove colons from filename to avoid conflicts with windows filesystem #17
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue