Skip to content

Commit

Permalink
fix #158
Browse files Browse the repository at this point in the history
  • Loading branch information
gotakk authored and dsoprea committed Sep 28, 2020
1 parent 3784065 commit c0878be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svn/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def log_default(self, timestamp_from_dt=None, timestamp_to_dt=None,

# Merge history can create nested log entries, so use iter instead of findall
for e in root.iter('logentry'):
entry_info = {x.tag: x.text for x in e.getchildren()}
entry_info = {x.tag: x.text for x in list(e)}

date = None
date_text = entry_info.get('date')
Expand Down

0 comments on commit c0878be

Please sign in to comment.