# HG changeset patch # User Kim Alvefur # Date 1313350468 -7200 # Node ID 65076d194b85270ff6e5b3f3757248cfc6a7f018 # Parent 582afbb2b23d7f4c94a0bc5af88a1e9b81bd2825 clix.vcard: Fix debug. diff -r 582afbb2b23d -r 65076d194b85 clix/vcard.lua --- a/clix/vcard.lua Sun Aug 14 21:30:08 2011 +0200 +++ b/clix/vcard.lua Sun Aug 14 21:34:28 2011 +0200 @@ -236,9 +236,11 @@ local item = vCard[i]; if item.name then local s = vCard_prop(item); - if s then print(s); end - else - conn:debug("Unhandled vCard field: %s", item.name); + if s then + print(s); + else + conn:debug("Unhandled vCard field: %s", item.name); + end end end print("END:VCARD");