Skip to content

Commit 8ed8d3c

Browse files
author
Dave Bartolomeo
authored
Merge pull request github#3343 from sauyon/sync-files
sync-files.py: cast line to string before concat
2 parents 266de2e + 972551e commit 8ed8d3c

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)