From 51839e65cd75a4d0c8e7c44431da86330173e2de Mon Sep 17 00:00:00 2001 From: nvbn Date: Fri, 22 Apr 2016 03:16:16 +0300 Subject: [PATCH] #495: Add comment in `put_to_history` --- thefuck/shells/generic.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/thefuck/shells/generic.py b/thefuck/shells/generic.py index ba9e0cd..e20d7ec 100644 --- a/thefuck/shells/generic.py +++ b/thefuck/shells/generic.py @@ -83,4 +83,9 @@ class Generic(object): return line def put_to_history(self, command): - pass + """Adds fixed command to shell history. + + In most of shells we change history on shell-level, but not + all shells support it (Fish). + + """