Merge pull request #3343 from sauyon/sync-files

sync-files.py: cast line to string before concat
This commit is contained in:
Dave Bartolomeo
2020-04-24 10:12:52 -04:00
committed by GitHub

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