README typo fix
2 files changed, 6 insertions(+), 1 deletions(-)

M README.rst
M trello_broker/settings.py
M README.rst +1 -1
@@ 28,7 28,7 @@ Basic Manual Install::
 
 Alternative Install (Manually):
 
-| Place trello_broker directory in your Python path. Either in your Python installs site-packages directory or set your $PYTHONPATH environment variable to include a directory where the webutils directory lives.
+| Place trello_broker directory in your Python path. Either in your Python installs site-packages directory or set your $PYTHONPATH environment variable to include a directory where the trello_broker directory lives.
 
 
 Usage

          
M trello_broker/settings.py +5 -0
@@ 53,3 53,8 @@ BITBUCKET_IPS = getattr(
     'TRELLO_BROKER_BITBUCKET_IPS',
     BITBUCKET_IP_ADDRESSES,
 )
+
+RULE_CLASSES = getattr(settings,
+    'TRELLO_BROKER_RULE_CLASSES',
+    ['trello_broker.rules.DefaultRuleProc'],
+)