magic-removal: removed redundant pointless method call.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2006-02-07 22:44:41 +00:00
parent 7662520667
commit b19eef14ed
1 changed files with 0 additions and 2 deletions

View File

@ -47,8 +47,6 @@ def get_model(app_label, model_name):
Returns the model matching the given app_label and case-insensitive model_name.
Returns None if no model is found.
"""
get_apps() # initialise
try:
model_dict = _app_models[app_label]
except KeyError: