From: Thierry Parmentelat Date: Tue, 19 May 2009 08:57:52 +0000 (+0000) Subject: fix X-Git-Tag: MyPLC-4.3-11~9 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2efcd1ed896f6f6025e3291ddefbf8b9cb192d9b;p=myplc.git fix --- 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()