remove temporary debug statements
This commit is contained in:
parent
1cfd3fd95b
commit
ff02d17619
@ -718,7 +718,6 @@ class Collection(BaseCollection):
|
|||||||
break
|
break
|
||||||
return collection.serialize()
|
return collection.serialize()
|
||||||
elif self.get_meta("tag") == "VADDRESSBOOK":
|
elif self.get_meta("tag") == "VADDRESSBOOK":
|
||||||
self.logger.debug("Try to serialize VADDRESSBOOK")
|
|
||||||
items_ok = []
|
items_ok = []
|
||||||
result = ""
|
result = ""
|
||||||
for item in items:
|
for item in items:
|
||||||
@ -728,7 +727,6 @@ class Collection(BaseCollection):
|
|||||||
except:
|
except:
|
||||||
self.logger.exception("VCARD broken (skip): %s", item)
|
self.logger.exception("VCARD broken (skip): %s", item)
|
||||||
result = "".join([item.serialize() for item in items_ok])
|
result = "".join([item.serialize() for item in items_ok])
|
||||||
self.logger.debug("Try to return VADDRESSBOOK")
|
|
||||||
return result
|
return result
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user