x.next() -> next(x) for python3 compat

This commit is contained in:
Joey Tuong 2015-12-25 13:54:38 +11:00
parent 9158273a21
commit cfa0e38ee7

View file

@ -1814,8 +1814,8 @@ class _Opus(_BaseObject, _Taggable):
try:
lfm = doc.getElementsByTagName('lfm')[0]
opus = self._get_children_by_tag_name(lfm, self.ws_prefix).next()
mbid = self._get_children_by_tag_name(opus, "mbid").next()
opus = next(self._get_children_by_tag_name(lfm, self.ws_prefix))
mbid = next(self._get_children_by_tag_name(opus, "mbid"))
return mbid.firstChild.nodeValue
except StopIteration:
return None