diff --git a/profiles/models.py b/profiles/models.py index ab44199..d4c83d3 100644 --- a/profiles/models.py +++ b/profiles/models.py @@ -227,7 +227,8 @@ def create_profile(nick=None): first_name=first_name, last_name=last_name, email=email, - uses_url=(random.random() < 0.5), + uses_urls=(random.random() < 0.5), ) profile.search_engine = random.choice(SearchEngine.objects.all()) profile.browser_fingerprint = random.choice(BrowserFingerprint.objects.all()) + profile.save()