Tagged Questions
4
votes
3answers
3k views
python random.random() causes “'module' object is not callable” when used in custom template tag
If I start python from the command line and type:
import random
print "Random: " + str(random.random())
It prints me a random number (Expected, excellent).
If I include the above-two lines in my ...