(sProperty)
| 2150 | arLines = [] |
| 2151 | |
| 2152 | def processSingleString(sProperty): |
| 2153 | sValue = self.getPropertyValue(elmCard, sProperty, self.STRING, bAutoEscape=1).decode(self.encoding) |
| 2154 | if sValue: |
| 2155 | arLines.append(self.vcardFold(sProperty.upper() + ':' + sValue)) |
| 2156 | return sValue or u'' |
| 2157 | |
| 2158 | def processSingleURI(sProperty): |
| 2159 | sValue = self.getPropertyValue(elmCard, sProperty, self.URI) |
nothing calls this directly
no test coverage detected