I get an error when trying to parse CSV data in my model: for row in csv.reader(open(sample_file)): AttributeError: 'function' object has no attribute 'reader'
It seems the problem is that appadmin.py has a csv() function that overrides the csv import in my model. I tried renaming this function and the error stopped. So, should this function be renamed? Richard