Add debugging for Python 3.3
This commit is contained in:
parent
892ccd3585
commit
e90f433e5e
|
@ -3045,8 +3045,9 @@ class User(_BaseObject):
|
||||||
seq = []
|
seq = []
|
||||||
for track in _collect_nodes(limit, self, "user.getRecentTracks", True, params):
|
for track in _collect_nodes(limit, self, "user.getRecentTracks", True, params):
|
||||||
|
|
||||||
print type(track)
|
print(type(track))
|
||||||
print track
|
print(track)
|
||||||
|
print(track.toprettyxml())
|
||||||
if track.hasAttribute('nowplaying'):
|
if track.hasAttribute('nowplaying'):
|
||||||
continue #to prevent the now playing track from sneaking in here
|
continue #to prevent the now playing track from sneaking in here
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue