Skip to content

Commit 972551e

Browse files
author
Sauyon Lee
committed
sync-files.py: cast line to string before concat
1 parent 1d6b6a4 commit 972551e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/sync-files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def choose_latest_file(files):
107107

108108
local_error_count = 0
109109
def emit_local_error(path, line, error):
110-
print('ERROR: ' + path + ':' + line + " - " + error)
110+
print('ERROR: ' + path + ':' + str(line) + " - " + error)
111111
global local_error_count
112112
local_error_count += 1
113113

0 commit comments

Comments
 (0)