Thanks for this nice script, it helped me to convert a few contacts from an old address book in Android.
In this address book, there were a few contacts with a field type x-mobil. Not really sure where it originates, perhaps at some time the German ISP T-Mobile used this for numbers in their network? I found a few references in German forums.
I just removed this custom field and converted it to a normal cell phone number. I don't know if you want to have it in the sources or not, I added a replace filter in vcard2to3.py after line 95:
Thanks for this nice script, it helped me to convert a few contacts from an old address book in Android.
In this address book, there were a few contacts with a field type
x-mobil
. Not really sure where it originates, perhaps at some time the German ISP T-Mobile used this for numbers in their network? I found a few references in German forums. I just removed this custom field and converted it to a normal cell phone number. I don't know if you want to have it in the sources or not, I added a replace filter in vcard2to3.py after line 95:self.replace_filters.append( (re.compile('^TEL;TYPE=x-mobil:(.*)'), 'TEL;TYPE=cell:\\1') )