# HG changeset patch # User eriol-guest # Date 1310018799 0 # Node ID 16c289c44accacf411d37abfa70d4fb7be76889a # Parent c47bdd30a0740352dbd0e49927c2804e8ebad220 Enhanced error message about missing settings_local.py diff --git a/bts_webui/settings.py b/bts_webui/settings.py --- a/bts_webui/settings.py +++ b/bts_webui/settings.py @@ -104,6 +104,7 @@ from settings_local import * except ImportError: from django.utils.termcolors import colorize - msg = 'Unable to find settings_local.py.' + msg = ('Unable to find settings_local.py, copy settings_local.template to' + '\nsettings_local.py and make your necessary changes.\n') sys.stderr.write(colorize(text=msg, fg='red', opts=('bold',))) sys.exit(1)