Corrected plugin group name in comments

This commit is contained in:
Matt Smith 2016-03-14 20:02:18 -07:00
parent a7b3898b6f
commit 3d50459b84

View File

@ -117,7 +117,7 @@ def load_consensus_plugin(name=None):
if not name:
name = bigchaindb.config.get('consensus_plugin', 'default')
# TODO: This will return the first plugin with group `bigchaindb.plugins`
# TODO: This will return the first plugin with group `bigchaindb.consensus`
# and name `name` in the active WorkingSet.
# We should probably support Requirements specs in the config, e.g.
# consensus_plugin: 'my-plugin-package==0.0.1;default'
@ -128,7 +128,7 @@ def load_consensus_plugin(name=None):
# No matching entry_point found
if not plugin:
raise ResolutionError(
'No plugin found in group `bigchaindb.plugins` with name `{}`'.
'No plugin found in group `bigchaindb.consensus` with name `{}`'.
format(name))
# Is this strictness desireable?