mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-03 18:31:28 +00:00
debug-viewer: Fix stacktrace after port to py3
This commit is contained in:
parent
ad886c288c
commit
52d1461bce
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class SearchSentinel (object):
|
||||||
it_ = iter_next_()
|
it_ = iter_next_()
|
||||||
|
|
||||||
def iter_next(it):
|
def iter_next(it):
|
||||||
return it_.next()
|
return it_.__next__()
|
||||||
|
|
||||||
YIELD_LIMIT = 1000
|
YIELD_LIMIT = 1000
|
||||||
i = YIELD_LIMIT
|
i = YIELD_LIMIT
|
||||||
|
|
Loading…
Reference in a new issue