Skip to content

Instantly share code, notes, and snippets.

@michaelkuty
Created August 21, 2014 20:58
Show Gist options
  • Save michaelkuty/57ac40950a77ab900336 to your computer and use it in GitHub Desktop.
Save michaelkuty/57ac40950a77ab900336 to your computer and use it in GitHub Desktop.
horizon auto overrides
def auto_overrides(app):
module_name = "%s.%s" % (app, "overrides")
try:
mod = __import__(module_name)
except Exception, e:
pass
for app in settings.INSTALLED_APPS:
auto_overrides(app)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment