#!/usr/bin/env python
from pyTuttle import tuttle
tuttle.core().getFormatter().setLogLevel_int(1)
tuttle.core().getPluginCache().clearPluginFiles()
tuttle.core().preload(True)
for pl in tuttle.core().getPlugins():
print pl.getIdentifier()
If I run the above python code, it retuns the plugins installed at /usr/OFX/Plugins folder only.
How do i add /usr/local/OFX/Plugins folder to pyttutle?
How do i add /usr/local/OFX/Plugins folder to pyttutle?