This commit is contained in:
Eric Froemling 2021-06-15 10:49:02 -05:00
parent 277ba7095f
commit 27811b8487
No known key found for this signature in database
GPG Key ID: 89C93F0F8D6D5A98
2 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
168473775412204194101843586699698465034
226926683788933102100058650343380221118

View File

@ -682,10 +682,11 @@ def _dummy_module_dirty() -> Tuple[bool, str]:
with open(outpath) as infile:
existing_hash = infile.read()
# Important to keep this deterministic...
pysources.sort()
# Note: returning plain integers instead of hex so linters
# don't see words and give spelling errors.
# Note: going with plain integers instead of hex so linters
# don't see words and whine about spelling errors.
pysources_hash = get_files_hash(pysources, int_only=True)
dirty = existing_hash != pysources_hash
return dirty, pysources_hash