Skip to content

Commit cd186fa

Browse files
committed
Tweaked patch.py for Py3 compatibility.
- Legacy-Id: 17916
1 parent 0ca29a8 commit cd186fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/utils/patch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,8 @@ def _normalize_filenames(self):
699699
for i,p in enumerate(self.items):
700700
if debugmode:
701701
debug(" patch type = " + p.type)
702-
debug(" source = " + p.source)
703-
debug(" target = " + p.target)
702+
debug(" source = " + str(p.source))
703+
debug(" target = " + str(p.target))
704704
if p.type in (HG, GIT):
705705
# TODO: figure out how to deal with /dev/null entries
706706
debug("stripping a/ and b/ prefixes")

0 commit comments

Comments
 (0)