sync-files.py: cast line to string before concat

This commit is contained in:
Sauyon Lee
2020-04-23 15:32:28 -07:00
parent 1d6b6a48ae
commit 972551edd7

View File

@@ -107,7 +107,7 @@ def choose_latest_file(files):
local_error_count = 0
def emit_local_error(path, line, error):
print('ERROR: ' + path + ':' + line + " - " + error)
print('ERROR: ' + path + ':' + str(line) + " - " + error)
global local_error_count
local_error_count += 1