Opened 14 years ago

Closed 14 years ago

Last modified 14 years ago

#14189 closed (fixed)

permalink docs import mistake

Reported by: TomV Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords: import
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The first example has:

from django.db import models

@models.permalink
def get_absolute_url(self):

which is fine. But

from django.db.models import permalink

@models.permalink
def get_absolute_url(self):

won't work. Patch makes consistent with first example.

Attachments (1)

permalink-import.diff (458 bytes ) - added by TomV 14 years ago.

Download all attachments as: .zip

Change History (4)

by TomV, 14 years ago

Attachment: permalink-import.diff added

comment:1 by Łukasz Rekucki, 14 years ago

Triage Stage: UnreviewedReady for checkin

Good catch.

comment:2 by Luke Plant, 14 years ago

Resolution: fixed
Status: newclosed

(In [13666]) Fixed #14189 - permalink docs import mistake

Thanks to 7times9 for report and patch.

comment:3 by Luke Plant, 14 years ago

(In [13667]) Fixed #14189 - permalink docs import mistake

Thanks to 7times9 for report and patch.

Backport of [13666] from trunk

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