mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 06:07:35 +03:00
Don't use isinstance(root, ET.Element) as ET.Element is a function in Python 2.6
This commit is contained in:
parent
e9935ae1a6
commit
080e4984aa
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ def name_from_path(path, calendar):
|
|||
def props_from_request(root, actions=("set", "remove")):
|
||||
"""Return a list of properties as a dictionary."""
|
||||
result = OrderedDict()
|
||||
if not isinstance(root, ET.Element):
|
||||
if not hasattr(root, "tag"):
|
||||
root = ET.fromstring(root.encode("utf8"))
|
||||
|
||||
for action in actions:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue