Can you tell me how to solve this error?
ImportError: 'module' object has no attribute 'ExampleIAuthfunctionsPlugin'
My class:
# encoding: utf-8
import ckan.plugins as plugins
class ExampleIAuthFunctionsPlugin(plugins.SingletonPlugin):
pass
followed by the entry point code if necessary:
entry_points='''
[ckan.plugins]
example_iauthfunctions=ckanext.iauthfunctions.plugin:ExampleIAuthFunctionsPlugin
''',