Opened 13 years ago
Closed 13 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)
Note:
See TracTickets
for help on using tickets.
This line is inside a function where verbose is defined as True by default (
def run(verbose=True):). Therefore,verbose=verboseis totally correct.