mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 10:32:13 -04:00
Merge branch 'ondrej-save-tsan-files-with-txt-extension-v9_18' into 'v9_18'
Save parsed tsan files with .txt extension [v9.18] See merge request isc-projects/bind9!6020
This commit is contained in:
commit
3a4f6ae775
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ with open(sys.argv[1], "r", encoding='utf-8') as f:
|
|||
DNAME = os.path.join(OUT, DNAME)
|
||||
if not os.path.isdir(DNAME):
|
||||
os.mkdir(DNAME)
|
||||
FNAME = sha256(S.block.encode('utf-8')).hexdigest() + ".tsan"
|
||||
FNAME = sha256(S.block.encode('utf-8')).hexdigest() + ".txt"
|
||||
FNAME = os.path.join(DNAME, FNAME)
|
||||
if not os.path.isfile(FNAME):
|
||||
with open(FNAME, "w", encoding='utf-8') as w:
|
||||
|
|
|
|||
Loading…
Reference in a new issue