From: Paul Brossier Date: Mon, 15 Apr 2013 19:29:46 +0000 (-0500) Subject: tests/listprocessors.py: update X-Git-Tag: 0.5.0~115^2~13 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=84b873113edc184c818ac4a3d9793634981f70b8;p=timeside.git tests/listprocessors.py: update --- diff --git a/tests/listprocessors.py b/tests/listprocessors.py index 840c087..aa37896 100644 --- a/tests/listprocessors.py +++ b/tests/listprocessors.py @@ -1,11 +1,12 @@ import timeside +import timeside.core def list_processors(interface, prefix=""): print prefix + interface.__name__ subinterfaces = interface.__subclasses__() for i in subinterfaces: list_processors(i, prefix + " ") - processors = timeside.processors(interface, False) + processors = timeside.core.processors(interface, False) for p in processors: print prefix + " %s [%s]" % (p.__name__, p.id())