Skip to content

Commit

Permalink
fix bug in doxygen debug: encode() str to hash it
Browse files Browse the repository at this point in the history
  • Loading branch information
garyjg committed Jan 10, 2025
1 parent 7e84add commit f90e1e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eol_scons/tools/doxygen.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ def Doxyfile_Emitter(target, source, env):
if ddebug():
dprint("leaving doxyfile_emitter: targets=(%s), sources=(%s)" %
(",".join([str(t) for t in target]),
",".join([hashlib.md5(str(s)).hexdigest() for s in source])))
",".join([hashlib.md5(str(s).encode()).hexdigest()
for s in source])))
return target, source


Expand Down

0 comments on commit f90e1e4

Please sign in to comment.