From 5f18f144fef252a7c1318380a9fdce1e8eb9d43a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20G=C3=A2teau?= Date: Fri, 16 Dec 2011 11:08:30 +0100 Subject: [PATCH] Clean up --- vcardedit.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vcardedit.py b/vcardedit.py index e201ee7..72f0d1e 100644 --- a/vcardedit.py +++ b/vcardedit.py @@ -69,7 +69,7 @@ def main(): for card in vobject.readComponents(src_file): if not "fn" in card.contents: - print "no FN in", card, "skipping" + print "no FN in", card, "discarding" continue keep = action(card) if keep: @@ -77,7 +77,6 @@ def main(): dst_file.write("\r\n") return 0 - if __name__ == "__main__": sys.exit(main()) # vi: ts=4 sw=4 et