This commit is contained in:
Paul Gauthier 2023-08-11 10:49:27 -03:00
parent c38a877d81
commit 9815d14368
2 changed files with 2 additions and 2 deletions

View file

@ -231,7 +231,7 @@ class InputOutput:
self.user_input(inp)
return inp
def add_to_file_history(self, inp):
def add_to_input_history(self, inp):
if not self.input_history_file:
return
FileHistory(self.input_history_file).append_string(inp)