(sProperty)
| 2246 | arLines = [] |
| 2247 | |
| 2248 | def processSingleString(sProperty): |
| 2249 | sValue = self.getPropertyValue(elmCard, sProperty, self.STRING, bAutoEscape=1).decode(self.encoding) |
| 2250 | if sValue: |
| 2251 | arLines.append(self.vcardFold(sProperty.upper() + ':' + sValue)) |
| 2252 | return sValue or u'' |
| 2253 | |
| 2254 | def processSingleURI(sProperty): |
| 2255 | sValue = self.getPropertyValue(elmCard, sProperty, self.URI) |
nothing calls this directly
no test coverage detected