diff options
Diffstat (limited to 'django/db/models/utils.py')
-rw-r--r-- | django/db/models/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/models/utils.py b/django/db/models/utils.py index 7d563c4ae0..b966029d63 100644 --- a/django/db/models/utils.py +++ b/django/db/models/utils.py @@ -1,8 +1,8 @@ def make_model_tuple(model): """ - Takes a model or a string of the form "app_label.ModelName" and returns a + Take a model or a string of the form "app_label.ModelName" and return a corresponding ("app_label", "modelname") tuple. If a tuple is passed in, - it's assumed to be a valid model tuple already and returned unchanged. + assume it's a valid model tuple already and return it unchanged. """ try: if isinstance(model, tuple): |