Ticket #13270: contributing.diff

File contributing.diff, 996 bytes (added by cmbeelby, 14 years ago)

Fixed typo and unbalanced quotes

  • contributing.txt

     
    454454    settings.configure({}, SOME_SETTING='foo')
    455455
    456456However, if any setting is accessed before the ``settings.configure`` line, this
    457 will not work. (Internally, ``setttings`` is a ``LazyObject`` which configures
     457will not work. (Internally, ``settings`` is a ``LazyObject`` which configures
    458458itself automatically when the settings are accessed if it has not already been
    459459configured).
    460460
     
    827827    }
    828828
    829829As a convenience, this settings file is included in your Django
    830 distribution. It is called ``test_sqlite`, and is included in
     830distribution. It is called ``test_sqlite``, and is included in
    831831the ``tests`` directory. This allows you to get started running
    832832the tests against the sqlite database without doing anything on
    833833your filesystem. However it should be noted that running against
Back to Top