Kaydet (Commit) d9d44d71 authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Negligible style change in django.db.models.loading

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 284bf1cf
...@@ -32,7 +32,7 @@ def get_apps(): ...@@ -32,7 +32,7 @@ def get_apps():
_app_errors[app_name] = e _app_errors[app_name] = e
return _app_list return _app_list
def get_app(app_label, emptyOK = False): def get_app(app_label, emptyOK=False):
"Returns the module containing the models for the given app_label. If the app has no models in it and 'emptyOK' is True, returns None." "Returns the module containing the models for the given app_label. If the app has no models in it and 'emptyOK' is True, returns None."
get_apps() # Run get_apps() to populate the _app_list cache. Slightly hackish. get_apps() # Run get_apps() to populate the _app_list cache. Slightly hackish.
for app_name in settings.INSTALLED_APPS: for app_name in settings.INSTALLED_APPS:
...@@ -75,7 +75,7 @@ def get_models(app_mod=None): ...@@ -75,7 +75,7 @@ def get_models(app_mod=None):
model_list.extend(get_models(app_mod)) model_list.extend(get_models(app_mod))
return model_list return model_list
def get_model(app_label, model_name, seed_cache = True): def get_model(app_label, model_name, seed_cache=True):
""" """
Returns the model matching the given app_label and case-insensitive Returns the model matching the given app_label and case-insensitive
model_name. model_name.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment