In Sumatra 0.6.0, my parameters are displayed correctly in smt list, but not in the web interface. In the django template, the for-loop over items executes 0 times. I debugged up to the following point. In views.py:record_detail(), the rendering is called:
It turns out that parameter_set here is a string representation of a dictionary rather than the actual dictionary. If I parse it beforehand (using the ast module), it is displayed correctly.
Thus, the parameter_set is probably not parsed correctly during de-serialisation. If that is important, some values in my dictionary are unicode.
Environment: Python 2.7, Sumatra 0.6.0, django-tagging 0.3.3, and Django 1.6.10.
In Sumatra 0.6.0, my parameters are displayed correctly in
smt list
, but not in the web interface. In the django template, the for-loop over items executes 0 times. I debugged up to the following point. In views.py:record_detail(), the rendering is called:It turns out that
parameter_set
here is a string representation of a dictionary rather than the actual dictionary. If I parse it beforehand (using theast
module), it is displayed correctly.Thus, the
parameter_set
is probably not parsed correctly during de-serialisation. If that is important, some values in my dictionary are unicode.Environment: Python 2.7, Sumatra 0.6.0, django-tagging 0.3.3, and Django 1.6.10.