Opened 5 years ago

Closed 5 years ago

#30069 closed Cleanup/optimization (fixed)

Add module docstring to manage.py template

Reported by: Brylie Christopher Oxley Owned by: Brylie Christopher Oxley
Component: Core (Management commands) Version: 2.1
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

When creating a django project scaffold, most files have a module docstring except manage.py. This missing docstring was caught when scanning a new django project with Pylint. Please add a basic module docstring to the manage.py skeleton in the django project scaffold, to keep from getting lint errors on new projects.

Change History (4)

comment:1 by Brylie Christopher Oxley, 5 years ago

I have opened a PR related to this issue:

https://github.com/django/django/pull/10811

Last edited 5 years ago by Brylie Christopher Oxley (previous) (diff)

comment:2 by Brylie Christopher Oxley, 5 years ago

Has patch: set
Owner: changed from nobody to Brylie Christopher Oxley
Status: newassigned

comment:3 by Tim Graham, 5 years ago

Summary: manage.py missing module docstring (Pylint)Add module docstring to manage.py template
Triage Stage: UnreviewedReady for checkin

comment:4 by Tim Graham <timograham@…>, 5 years ago

Resolution: fixed
Status: assignedclosed

In e5ae9488:

Fixed #30069 -- Added docstring to manage.py template.

Note: See TracTickets for help on using tickets.
Back to Top