diff options
-rwxr-xr-x | share/shadow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/shadow.py b/share/shadow.py index 8fbc8c6..e49ebb4 100755 --- a/share/shadow.py +++ b/share/shadow.py @@ -68,7 +68,7 @@ def print_changes(): import sys for f in FAKE.values(): l = len(f[1]) - if l >= 1 and f[1][0] != -1: + if l >= 1 and (f[1][0] != -1 or f[0].__name__ == 'set_shell_history_size'): name = f[0].__name__ try: if f[0].one_arg: |