From 937323de1025ba4e5a38f753a2221abdeb4826b0 Mon Sep 17 00:00:00 2001 From: Bruce Dawson Date: Sun, 23 May 2021 19:35:04 -0700 Subject: [PATCH] Python 3 fix for ETWPackSymbols.py --- bin/ETWPackSymbols.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/ETWPackSymbols.py b/bin/ETWPackSymbols.py index 9254f012..a084b552 100644 --- a/bin/ETWPackSymbols.py +++ b/bin/ETWPackSymbols.py @@ -97,8 +97,7 @@ def main(): # 0x4da89d03, 0x00bcb000, "client.dll", "[RSDS] PdbSig: {7b2a9028-87cd-448d-8500-1a18cdcf6166}; Age: 753; Pdb: u:\buildbot\dota_staging_win32\build\src\game\client\Release_dota\client.pdb" print("Executing command '%s'" % command) - lines = str(subprocess.check_output(command)).splitlines() - + lines = subprocess.check_output(command).decode().splitlines() matchCount = 0 matchExists = 0 interestingModuleCount = 0