Opened 11 years ago

Closed 11 years ago

#19913 closed Uncategorized (invalid)

minor correction of GeoDjango tutorial

Reported by: hqtay Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Under LayerMappings code:
lm.save(strict=True, verbose=verbose)

should instead be:
lm.save(strict=True, verbose=True)

Change History (1)

comment:1 by Claude Paroz, 11 years ago

Resolution: invalid
Status: newclosed

This line is inside a function where verbose is defined as True by default ( def run(verbose=True): ). Therefore, verbose=verbose is totally correct.

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