diff options
author | David Robillard <d@drobilla.net> | 2011-02-12 19:53:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-12 19:53:08 +0000 |
commit | 053f1f082fe2603949050da99a76e6e799335c22 (patch) | |
tree | cf30776758aabc39b346f5f72b4286f6b9389d09 /swig/python | |
parent | a4b1d7318f7cfc752ac3a8858006c0d6c796553e (diff) | |
download | lilv-053f1f082fe2603949050da99a76e6e799335c22.tar.gz lilv-053f1f082fe2603949050da99a76e6e799335c22.tar.bz2 lilv-053f1f082fe2603949050da99a76e6e799335c22.zip |
Wrap rest of API (with a few troublesome exceptions).
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2942 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'swig/python')
-rwxr-xr-x | swig/python/lv2_list.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/swig/python/lv2_list.py b/swig/python/lv2_list.py index 0cd6a1b..4b09e86 100755 --- a/swig/python/lv2_list.py +++ b/swig/python/lv2_list.py @@ -5,8 +5,8 @@ import slv2 world = slv2.World() world.load_all() -plugins = world.get_all_plugins() - -for i in plugins: +for i in world.get_all_plugins(): print(i.get_uri()) + + |