Quellcode durchsuchen

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

pull/24/head
Ben Kurtovic vor 12 Jahren
Ursprung
Commit
94d266e740
1 geänderte Dateien mit 2 neuen und 3 gelöschten Zeilen
  1. +2
    -3
      pages/settings.mako

+ 2
- 3
pages/settings.mako Datei anzeigen

@@ -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">


Laden…
Abbrechen
Speichern