From 8d144dadd8b60a7ce803ebcb235718f06e2d5986 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 21 Jul 2005 02:20:40 +0000 Subject: [PATCH] Fixed #114 -- Changed uses of deprecated 'whrandom' module to 'random' git-svn-id: http://code.djangoproject.com/svn/django/trunk@262 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management.py | 2 +- django/models/auth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django/core/management.py b/django/core/management.py index c15ecb817b..aeac118108 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -342,7 +342,7 @@ def _start_helper(app_or_project, name, directory, other_name=''): def startproject(project_name, directory): "Creates a Django project for the given project_name in the given directory." - from whrandom import choice + from random import choice _start_helper('project', project_name, directory) # Populate TEMPLATE_DIRS for the admin templates, based on where Django is # installed. diff --git a/django/models/auth.py b/django/models/auth.py index ef0ffdf749..4d3f6394a1 100644 --- a/django/models/auth.py +++ b/django/models/auth.py @@ -172,7 +172,7 @@ class User(meta.Model): "Generates a random password with the given length and given allowed_chars" # Note that default value of allowed_chars does not have "I" or letters # that look like it -- just to avoid confusion. - from whrandom import choice + from random import choice return ''.join([choice(allowed_chars) for i in range(length)]) class Session(meta.Model):