From cd186fa04b009bc5b35bc84ca0cd45dfe0b81523 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 6 Jun 2020 20:17:31 +0000 Subject: [PATCH] Tweaked patch.py for Py3 compatibility. - Legacy-Id: 17916 --- ietf/utils/patch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/utils/patch.py b/ietf/utils/patch.py index b98106126..03f7b9382 100644 --- a/ietf/utils/patch.py +++ b/ietf/utils/patch.py @@ -699,8 +699,8 @@ class PatchSet(object): for i,p in enumerate(self.items): if debugmode: debug(" patch type = " + p.type) - debug(" source = " + p.source) - debug(" target = " + p.target) + debug(" source = " + str(p.source)) + debug(" target = " + str(p.target)) if p.type in (HG, GIT): # TODO: figure out how to deal with /dev/null entries debug("stripping a/ and b/ prefixes")