From 553468bbe4309b9c2d55277617c9b8429321cbbf Mon Sep 17 00:00:00 2001 From: Frederic Lepied Date: Thu, 8 Sep 2005 14:10:09 +0000 Subject: print_changes: make an exception for set_shell_history_size. --- share/shadow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.1