I have a function in Django that accepts an argument in the form of a list [var1, var2], but Django is throwing an exception. This works in interactive-python.
stuff = ["Phone", "Plant", "Dog"]
def doesStuff(items):
for i in items:
print i
doesStuff(stuff)
Phone
Plant
Dog
But not in Django.. I get "takes exactly 2 arguments (3 given)", it is using the list as multiple arguments, when it is only one. Any ideas?
Thanks!