Fix error in template map, key should be the types, not strings

svn: r22443
This commit is contained in:
Benny Malengier 2013-05-28 10:17:31 +00:00
parent 9b1af034fc
commit cc8b166138
2 changed files with 171 additions and 171 deletions

View File

@ -168,7 +168,7 @@ code += "\n #templates for the source types defined\n"\
" # L: List reference (for in bibliography list)\n"
code += ' EVIDENCETEMPLATES = {\n'
for source_type in allkeys:
code += " '" + source_type + "': {\n"
code += " " + source_type + ": {\n"
for val in ['F', 'L', 'S']:
code += " '" + val + "': [\n"
for field in TYPE2CITEMAP[source_type][val]:

File diff suppressed because it is too large Load Diff