Skip to content

Commit

Permalink
Merge 46c87a2 into 6ede1d6
Browse files Browse the repository at this point in the history
  • Loading branch information
sagar-kohli committed Mar 17, 2017
2 parents 6ede1d6 + 46c87a2 commit 1cc1717
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/damn_at/pluginmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,17 @@ def __init__(self):
directory = os.path.dirname(os.path.abspath(__file__))
PluginManager.__init__(
self,
directories_list=[os.path.join(directory, 'analyzers'), os.path.join(directory, 'transcoders'), os.path.join(directory, 'repositories')],
directories_list=[
os.path.join(directory, 'analyzers'),
os.path.join(directory, 'transcoders')
],
categories_filter={
"Analyzer": IAnalyzer,
"Transcoder": ITranscoder,
"MetaDataStore": IMetaDataStore,
"Repository": IRepository,
},
plugin_info_ext=('analyzer', 'transcoder', 'repository',)
plugin_info_ext=('analyzer', 'transcoder',)
)

def collect_plugins(self):
Expand Down

0 comments on commit 1cc1717

Please sign in to comment.