Skip to content

Commit d192281

Browse files
committed
Applied a patch from dkg@fifthhorseman.net: py3 compatibility: fix another instance of integer division
- Legacy-Id: 15896
1 parent cb95217 commit d192281

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/draft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ def dotexp(s):
706706
_debug("B:authors : %s" % str(authors))
707707

708708
last_line = len(self.lines)-1
709-
address_section_pos = last_line/2
709+
address_section_pos = last_line//2
710710
for i in range(last_line//2,last_line):
711711
line = self.lines[i]
712712
if re.search(address_section, line):

0 commit comments

Comments
 (0)