Skip to content

Commit c25d49c

Browse files
committed
Fix doc8 linting issues.
1 parent 537e1cb commit c25d49c

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

docs/changes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,9 +371,9 @@ This version is compatible with Django 1.9 and requires Django 1.7 or later.
371371
New features
372372
~~~~~~~~~~~~
373373

374-
* New panel method :meth:`debug_toolbar.panels.Panel.generate_stats` allows panels
375-
to only record stats when the toolbar is going to be inserted into the
376-
response.
374+
* New panel method :meth:`debug_toolbar.panels.Panel.generate_stats` allows
375+
panels to only record stats when the toolbar is going to be inserted into
376+
the response.
377377

378378
Bug fixes
379379
~~~~~~~~~

docs/configuration.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,10 @@ Panel options
201201

202202
**Without grouping**::
203203

204-
SELECT "auth_user"."id", "auth_user"."password", "auth_user"."last_login", "auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name", "auth_user"."last_name"
204+
SELECT
205+
"auth_user"."id", "auth_user"."password", "auth_user"."last_login",
206+
"auth_user"."is_superuser", "auth_user"."username", "auth_user"."first_name",
207+
"auth_user"."last_name"
205208
FROM "auth_user"
206209
WHERE "auth_user"."username" = '''test_username'''
207210
LIMIT 21

docs/panels.rst

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ Memcache
220220

221221
URL: https://github.com/ross/memcache-debug-panel
222222

223-
Path: ``memcache_toolbar.panels.memcache.MemcachePanel`` or ``memcache_toolbar.panels.pylibmc.PylibmcPanel``
223+
Path: ``memcache_toolbar.panels.memcache.MemcachePanel`` or
224+
``memcache_toolbar.panels.pylibmc.PylibmcPanel``
224225

225226
This panel tracks memcached usage. It currently supports both the pylibmc and
226227
memcache libraries.
@@ -241,7 +242,8 @@ URL: https://github.com/robinedwards/django-debug-toolbar-neo4j-panel
241242

242243
Path: ``neo4j_panel.Neo4jPanel``
243244

244-
Trace neo4j rest API calls in your Django application, this also works for neo4django and neo4jrestclient, support for py2neo is on its way.
245+
Trace neo4j rest API calls in your Django application, this also works for
246+
neo4django and neo4jrestclient, support for py2neo is on its way.
245247

246248
Pympler
247249
~~~~~~~
@@ -250,7 +252,8 @@ URL: https://pythonhosted.org/Pympler/django.html
250252

251253
Path: ``pympler.panels.MemoryPanel``
252254

253-
Shows process memory information (virtual size, resident set size) and model instances for the current request.
255+
Shows process memory information (virtual size, resident set size) and model
256+
instances for the current request.
254257

255258
Request History
256259
~~~~~~~~~~~~~~~
@@ -259,7 +262,8 @@ URL: https://github.com/djsutho/django-debug-toolbar-request-history
259262

260263
Path: ``ddt_request_history.panels.request_history.RequestHistoryPanel``
261264

262-
Switch between requests to view their stats. Also adds support for viewing stats for AJAX requests.
265+
Switch between requests to view their stats. Also adds support for viewing
266+
stats for AJAX requests.
263267

264268
Requests
265269
~~~~~~~~
@@ -289,8 +293,9 @@ URL: https://github.com/node13h/django-debug-toolbar-template-profiler
289293

290294
Path: ``template_profiler_panel.panels.template.TemplateProfilerPanel``
291295

292-
Shows template render call duration and distribution on the timeline. Lightweight.
293-
Compatible with WSGI servers which reuse threads for multiple requests (Werkzeug).
296+
Shows template render call duration and distribution on the timeline.
297+
Lightweight. Compatible with WSGI servers which reuse threads for multiple
298+
requests (Werkzeug).
294299

295300
Template Timings
296301
~~~~~~~~~~~~~~~~
@@ -317,7 +322,8 @@ URL: https://github.com/giginet/django-debug-toolbar-vcs-info
317322

318323
Path: ``vcs_info_panel.panels.GitInfoPanel``
319324

320-
Displays VCS status (revision, branch, latest commit log and more) of your Django application.
325+
Displays VCS status (revision, branch, latest commit log and more) of your
326+
Django application.
321327

322328
uWSGI Stats
323329
~~~~~~~~~~~

docs/tips.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ development.
5151
The cache panel is very similar to the SQL panel, except it isn't always a bad
5252
practice to make many cache queries in a view.
5353

54-
The template panel becomes slow if your views or context processors return large
55-
contexts and your templates have complex inheritance or inclusion schemes.
54+
The template panel becomes slow if your views or context processors return
55+
large contexts and your templates have complex inheritance or inclusion
56+
schemes.
5657

5758
Solutions
5859
~~~~~~~~~

0 commit comments

Comments
 (0)