Skip to content

Commit aad1d0f

Browse files
committed
Fixed another str/bytes issue.
- Legacy-Id: 16344
1 parent ff6997d commit aad1d0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ def dependencies(request, acronym, group_type=None, output_type="pdf"):
708708
pipe("%s -f -l 10 -o %s %s" % (settings.UNFLATTEN_BINARY, unflatname, dotname))
709709
pipe("%s -T%s -o %s %s" % (settings.DOT_BINARY, output_type, outname, unflatname))
710710

711-
outhandle = open(outname, "r")
711+
outhandle = open(outname, "rb")
712712
out = outhandle.read()
713713
outhandle.close()
714714

0 commit comments

Comments
 (0)