Commit 50745cc3 authored by Karen Tracey's avatar Karen Tracey
Browse files

Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code comments. Thanks kaikuehne.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@10801 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 92e5249a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ class CsrfMiddlewareTest(TestCase):
    # Check the post processing
    def test_process_response_no_session(self):
        """
        Check the the post-processor does nothing if no session active
        Check the post-processor does nothing if no session active
        """
        req = self._get_GET_no_session_request()
        resp = self._get_post_form_response()
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ def create_test_spatial_db(verbosity=1, autoclobber=False, interactive=False):
    if settings.DATABASE_ENGINE != 'sqlite3':
        raise Exception('SpatiaLite database creation only supported on sqlite3 platform.')

    # Getting the test database name using the the SQLite backend's
    # Getting the test database name using the SQLite backend's
    # `_create_test_db`.  Unless `TEST_DATABASE_NAME` is defined,
    # it returns ":memory:".
    db_name = connection.creation._create_test_db(verbosity, autoclobber)
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ elif os.name == 'posix':
else:
    raise ImportError('Unsupported OS "%s"' % os.name)

# Using the ctypes `find_library` utility to find the the path to the GEOS
# Using the ctypes `find_library` utility to find the path to the GEOS
# shared library.  This is better than manually specifiying each library name
# and extension (e.g., libgeos_c.[so|so.1|dylib].).
if lib_names:
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ from decimal import Decimal
class MeasureBase(object):
    def default_units(self, kwargs):
        """
        Return the unit value and the the default units specified
        Return the unit value and the default units specified
        from the given keyword arguments dictionary.
        """
        val = 0.0
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
</style>
<!--[if IE]>
<style type="text/css">
  /* This fixes the the mouse offset issues in IE. */
  /* This fixes the mouse offset issues in IE. */
  #{{ id }}_admin_map { position: static; vertical-align: top; }
  /* `font-size: 0` fixes the 1px border between tiles, but borks LayerSwitcher.
      Thus, this is disabled until a better fix is found.
Loading