Просмотр исходного кода

Try to fix shadowing bug?

pull/24/head
Ben Kurtovic 10 лет назад
Родитель
Сommit
fbf263f0f2
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      templates/api.mako

+ 2
- 2
templates/api.mako Просмотреть файл

@@ -4,7 +4,7 @@
% endfor
</%def>\
<%def name="walk_json(obj, indent=0)">
% if isinstance(obj, dict):
% if isinstance(obj, __builtins__.dict):
{
% for key, value in obj.iteritems():
${do_indent(indent + 1)}
@@ -12,7 +12,7 @@
% endfor
${do_indent(indent)}
}
% elif isinstance(obj, list):
% elif isinstance(obj, __builtins__.list):
[
% for member in obj:
${do_indent(indent + 1)}


Загрузка…
Отмена
Сохранить