reg/utils.py
author nishanth
Thu, 15 Apr 2010 19:00:23 +0530
changeset 56 3858a9d0f376
parent 6 057498d12450
permissions -rw-r--r--
removed the field feedback_submitted_by from event model and added the code to create feedlog record when a new feedback is taken.

import string
import random

def gen_key(no_of_chars):
    allowed_chars = string.digits+string.uppercase
    return ''.join([random.choice(allowed_chars) for i in range(no_of_chars)])