Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions vobject/vcard.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,10 @@

from . import behavior

from .base import ContentLine, registerBehavior, backslashEscape, str_
from .base import ContentLine, registerBehavior, backslashEscape, basestring, str_
from .icalendar import stringToTextValues


# Python 3 no longer has a basestring type, so....
try:
basestring = basestring
except NameError:
basestring = (str, bytes)

# ------------------------ vCard structs ---------------------------------------


Expand Down