Skip to content
Snippets Groups Projects
Commit 270f8e89 authored by Ian Moody's avatar Ian Moody
Browse files

py3: stop using deprecated Element.getchildren() method in convert/darcs

This has been deprecated since py3.2, and removed entirely in py3.9
parent 6833ccc5
No related branches found
No related tags found
2 merge requests!177branching,!172convert: get test-convert-darcs.t passing under py3
......@@ -178,7 +178,7 @@
copies = {}
changes = []
man = None
for elt in self.changes[rev].find('summary').getchildren():
for elt in self.changes[rev].find('summary'):
if elt.tag in ('add_directory', 'remove_directory'):
continue
if elt.tag == 'move':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment