django1/django/core/management
Mariusz Felisiak c5cd878382
Refs #33476 -- Refactored problematic code before reformatting by Black.
In these cases Black produces unexpected results, e.g.

def make_random_password(
    self,
    length=10,
    allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789',
):

or

cursor.execute("""
SELECT ...
""",
    [table name],
)
2022-02-03 11:20:46 +01:00
..
commands Fixed #26760 -- Added --prune option to migrate command. 2022-01-21 17:10:31 +01:00
__init__.py Refs #32355 -- Removed unnecessary list() calls before reversed() on dictviews. 2022-01-07 16:29:15 +01:00
base.py Refs #33476 -- Refactored problematic code before reformatting by Black. 2022-02-03 11:20:46 +01:00
color.py Fixed #32740 -- Caught possible exception when initializing colorama. 2021-05-19 10:33:15 +02:00
sql.py Fixed #32395 -- Allowed capturing stdout of migration signals. 2021-02-04 11:19:49 +01:00
templates.py Fixed #32397 -- Made startapp/startproject management commands set User-Agent. 2021-11-25 20:36:04 +01:00
utils.py Refs #32355 -- Modernized subprocess.run() calls. 2021-09-27 08:20:24 +02:00