You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lgby_titles= (':'.join(lgby_vname_list).title() for
This line causing "sequence item 0: expected str instance, proxy found" error if a translated field is found.```
lgby_titles = []
for lgby_vname_list in lgby_vname_lists:
tmp_list = (str(vname).title() for vname in lgby_vname_list)
lgby_titles.append(':'.join(tmp_list))
if wrote like above, no errors. Its identical, but this list yields proxy fields for translated fields if wrote as original.
The text was updated successfully, but these errors were encountered:
durdenk
changed the title
__proxy__ found error if translted field supplied as "legend_by"
__proxy__ found error if translated field supplied as "legend_by"
Aug 16, 2018
django-chartit/chartit/charts.py
Line 607 in 0934cac
This line causing "sequence item 0: expected str instance, proxy found" error if a translated field is found.```
if wrote like above, no errors. Its identical, but this list yields proxy fields for translated fields if wrote as original.
The text was updated successfully, but these errors were encountered: