소스 검색

Get around Mako bug that doesn't support try/else

pull/24/head
Ben Kurtovic 12 년 전
부모
커밋
94d266e740
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. +2
    -3
      pages/settings.mako

+ 2
- 3
pages/settings.mako 파일 보기

@@ -54,14 +54,13 @@
<td><b><tt>${cookie.key | h}</tt></b></td>
% try:
<% lines = dumps(loads(cookie.value), indent=4).splitlines() %>
% except ValueError:
<td><tt>${cookie.value | h}</tt></td>
% else:
<td>
% for line in lines:
<tt><div class="indentable">${line | h}</div></tt>
% endfor
</td>
% except ValueError:
<td><tt>${cookie.value | h}</tt></td>
% endtry
<td>
<form action="${environ['PATH_INFO']}" method="post">


불러오는 중...
취소
저장