2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 01:46:15 +01:00

Fix Python 3 encoding for unit tests #2108

This commit is contained in:
Thomas Nagy 2018-02-14 21:06:48 +01:00
parent 43039e716b
commit a7546a2d22
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA

View File

@ -233,7 +233,7 @@ class utest(Task.Task):
def sig_explicit_deps(self):
lst = [os.stat(node.abspath()).st_mtime for node in self.inputs]
self.m.update(str(lst))
self.m.update(Utils.h_list(lst))
return super(utest, self).sig_explicit_deps()
def summary(bld):