From 2efcd1ed896f6f6025e3291ddefbf8b9cb192d9b Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 19 May 2009 08:57:52 +0000 Subject: [PATCH] fix --- plc-orphan-accounts.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plc-orphan-accounts.py b/plc-orphan-accounts.py index 83f6901..f688015 100755 --- a/plc-orphan-accounts.py +++ b/plc-orphan-accounts.py @@ -23,9 +23,10 @@ def main (): print 'Found',len(orphans),'orphan accounts' index=1 for p in orphans: - list_person ("%3d"%index++,p) + list_person ("%3d"%index,p) for related in get_related(p['email']): list_person("---",related) + index++ if __name__ == '__main__': main() -- 2.43.0