From 5987fa80bcdf04d57e279e5046dd14e6ccd854d8 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 7 Jul 2017 10:29:47 +0100 Subject: [PATCH] threader: Use 'str' instead of non-existant 'string' function. Strong typing FTW. --- threader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threader.py b/threader.py index 22416e6..df1d28f 100755 --- a/threader.py +++ b/threader.py @@ -95,7 +95,7 @@ def process_patch(m, method, title, part, n): h.update(m['From']) h.update(m['To']) h.update(title) - h.update(string(n)) + h.update(str(n)) parent_id = h.hexdigest() thread_patch(m, method, parent_id, part, n) -- 1.8.3.1