Mercurial > p > roundup > code
comparison roundup/cgi/templating.py @ 3271:572bbe7fa236
typo in recent fix
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Thu, 07 Apr 2005 07:10:22 +0000 |
| parents | e4607e12d030 |
| children | f3d15524562e |
comparison
equal
deleted
inserted
replaced
| 3270:e4607e12d030 | 3271:572bbe7fa236 |
|---|---|
| 1706 # ignore these errors to preserve user input | 1706 # ignore these errors to preserve user input |
| 1707 try: | 1707 try: |
| 1708 display_value.sort(sortfun) | 1708 display_value.sort(sortfun) |
| 1709 except: | 1709 except: |
| 1710 pass | 1710 pass |
| 1711 self_value = display_value | 1711 self._value = display_value |
| 1712 | 1712 |
| 1713 def __len__(self): | 1713 def __len__(self): |
| 1714 ''' length of the multilink ''' | 1714 ''' length of the multilink ''' |
| 1715 return len(self._value) | 1715 return len(self._value) |
| 1716 | 1716 |
