# HG changeset patch # User Peter Sanchez # Date 1473521727 25200 # Sat Sep 10 08:35:27 2016 -0700 # Node ID 6491c137c9eafe923a86941686a498dfedc93c85 # Parent c882975ab828875e597df9666de76c9e62356718 README typo fix diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -28,7 +28,7 @@ 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 diff --git a/trello_broker/settings.py b/trello_broker/settings.py --- a/trello_broker/settings.py +++ b/trello_broker/settings.py @@ -53,3 +53,8 @@ 'TRELLO_BROKER_BITBUCKET_IPS', BITBUCKET_IP_ADDRESSES, ) + +RULE_CLASSES = getattr(settings, + 'TRELLO_BROKER_RULE_CLASSES', + ['trello_broker.rules.DefaultRuleProc'], +)