Re: A single file that contains common django imports

2012-07-06 Thread Russell Keith-Magee
On Sat, Jul 7, 2012 at 3:29 AM, Scott Woodall wrote: > Would there be any issues with creating a single file contains common django > modules I use, then importing that file into my views, models etc. > > Example: > > common_imports.py > === > from django.conf import settings > from dj

A single file that contains common django imports

2012-07-06 Thread Scott Woodall
Would there be any issues with creating a single file contains common django modules I use, then importing that file into my views, models etc. Example: common_imports.py === from django.conf import settings from django.core.urlresolvers import reverse from django.shortcuts import re