I am following the instructions on Heroku for using Memcahier with Python.
When trying to use the 'mc' variable, which is set in settings.py, in another file I get the following error:
Exception Value: name 'mc' is not defined
I have tried importing settings.py into the file I wish to use the 'mc' variable but I get another error:
'Settings' object has no attribute 'mc'
How can I access this mc variable outside of the settings file?