diff options
| author | davidchorpash <dchorpash@doctorondemand.com> | 2020-06-06 17:05:39 -0600 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-06-08 06:46:23 +0200 |
| commit | 07506a61147768b95e44ee68d0673851fa5e05bd (patch) | |
| tree | a7156088b8dbebb4f5d78758711ef5e3c020acb0 /django | |
| parent | 38a21f2d9ed4f556af934498ec6a242f6a20418a (diff) | |
Fixed #31661 -- Removed period in makemigrations history check warning.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/commands/makemigrations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/makemigrations.py b/django/core/management/commands/makemigrations.py index 709abaa8d6..c8c688ec94 100644 --- a/django/core/management/commands/makemigrations.py +++ b/django/core/management/commands/makemigrations.py @@ -104,7 +104,7 @@ class Command(BaseCommand): except OperationalError as error: warnings.warn( "Got an error checking a consistent migration history " - "performed for database connection '%s': %s." + "performed for database connection '%s': %s" % (alias, error), RuntimeWarning, ) |
