Skip to content

Commit

Permalink
review of the PR
Browse files Browse the repository at this point in the history
  • Loading branch information
a-detiste committed Dec 19, 2023
1 parent 90793a9 commit 8959478
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ pip install mpegdash
## Test

```bash
$ python3 -m unittest discover
$ python -m unittest discover
```

* * *
Expand Down
2 changes: 1 addition & 1 deletion mpegdash/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def parse_child_nodes(xmlnode, tag_name, node_type):

nodes = []
for elem in elements:
if node_type is str:
if isinstance(node_type, str):
node = xmlnode.firstChild.nodeValue
else:
node = node_type()
Expand Down

0 comments on commit 8959478

Please sign in to comment.