git.annexia.org
/
patchq.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f7461c
)
threader: Use 'str' instead of non-existant 'string' function.
author
Richard W.M. Jones
<rjones@redhat.com>
Fri, 7 Jul 2017 09:29:47 +0000
(10:29 +0100)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 7 Jul 2017 09:31:09 +0000
(10:31 +0100)
Strong typing FTW.
threader.py
patch
|
blob
|
history
diff --git
a/threader.py
b/threader.py
index
22416e6
..
df1d28f
100755
(executable)
--- 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(str
ing
(n))
+ h.update(str(n))
parent_id = h.hexdigest()
thread_patch(m, method, parent_id, part, n)