Skip to content

Commit

Permalink
Fix lv2 effect builder for travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
SrMouraSilva committed Mar 16, 2017
1 parent 8209074 commit eeb7b25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pluginsmanager/model/lv2/lv2_effect_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def __init__(self, plugins_json=None):
with open(plugins_json) as data_file:
data = json.load(data_file)

supported_plugins = self._supported_plugins
#supported_plugins = self._supported_plugins
for plugin in data:
if plugin['uri'] in supported_plugins:
# if plugin['uri'] in supported_plugins:
self.plugins[plugin['uri']] = Lv2Plugin(plugin)

@property
Expand Down

0 comments on commit eeb7b25

Please sign in to comment.