Skip to content

Commit

Permalink
Let's not talk about this...
Browse files Browse the repository at this point in the history
Casted the unicode part of the CSV header to str.
  • Loading branch information
jcaraballo17 committed Nov 18, 2019
1 parent 718499b commit 7378ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utilities/DatasetUtilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def generateQualifierCodes(codes): # type: ([(int, str, str)]) -> str

for code in codes:
_, abrv, definition = code
header += '# %s: %s\n' % (abrv, definition)
header += str('# %s: %s\n' % (abrv, definition))

return header + '#\n'

Expand Down

0 comments on commit 7378ff6

Please sign in to comment.