Commit b83fcacf authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #7514 -- Added code to clear the site cache on sync. This shouldn't have...

Fixed #7514 -- Added code to clear the site cache on sync. This shouldn't have any effect on regular usage, but it does correct an error in the test suite. Thanks to Marc Fargas for the fix.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7723 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent b1851cca
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -13,5 +13,6 @@ def create_default_site(app, created_models, verbosity):
            print "Creating example.com Site object"
        s = Site(domain="example.com", name="example.com")
        s.save()
    Site.objects.clear_cache()

dispatcher.connect(create_default_site, sender=site_app, signal=signals.post_syncdb)