Skip to content
This repository has been archived by the owner on Jan 14, 2019. It is now read-only.

Commit

Permalink
Bugfix: Entities are no Tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
bartTC committed Jan 15, 2009
1 parent aefc608 commit 406e22a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_de/apps/ticker/textutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#===============================================================================

def changeset_links(content):
content = re.sub(r'#(\d+)', '<a href="http://code.djangoproject.com/ticket/\\1">#\\1</a>', content)
content = re.sub(r'r(\d+)', '<a href="http://code.djangoproject.com/changeset/\\1">r\\1</a>', content)
content = re.sub(r'#(\d{4,5})', '<a href="http://code.djangoproject.com/ticket/\\1">#\\1</a>', content)
content = re.sub(r'r(\d{4,5})', '<a href="http://code.djangoproject.com/changeset/\\1">r\\1</a>', content)
return content

#===============================================================================
Expand Down

0 comments on commit 406e22a

Please sign in to comment.