mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
sync-files.py: cast line to string before concat
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user