fix reST markup

This commit is contained in:
Thomas Waldmann 2013-12-14 03:50:08 +01:00
parent cae77f53c9
commit 1b9bd79f2b

View File

@ -11,12 +11,15 @@ New Features:
Other changes:
* important: in your local_settings.py, please do your imports like this:
* important: importing from nsupdate.settings does not work any more (nor
does the nsupdate.local_settings hack work any more).
in your local_settings.py, please do your imports like this::
from nsupdate.settings.dev import * # for development
# alternatively:
from nsupdate.settings.prod import * # for production
after that, override whatever you need to override.
importing from nsupdate.settings does not work any more, nor does the
nsupdate.local_settings hack work any more.
# after that, override whatever you need to override.
* improved docs about a sane settings setup
* document postgreSQL setup
* also support Python 2.6.x