Use lowercase name for file paths
This commit is contained in:
parent
0ae570a3ea
commit
e730577d13
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,8 @@ class FormApp(npyscreen.NPSAppManaged):
|
||||||
|
|
||||||
def get_filepath(self):
|
def get_filepath(self):
|
||||||
name = self.base_data.get_form_values_dict()['fullname']
|
name = self.base_data.get_form_values_dict()['fullname']
|
||||||
fn = '{}_{}.json'.format('_'.join(name.split()), datetime.datetime.now().replace(microsecond=0).isoformat())
|
date = datetime.datetime.now().replace(microsecond=0).isoformat()
|
||||||
|
fn = '{}_{}.json'.format('_'.join(name.lower().split()), date)
|
||||||
file_path = pathlib.Path(self.dir_path, fn)
|
file_path = pathlib.Path(self.dir_path, fn)
|
||||||
return file_path
|
return file_path
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue