Back to really/long/file/paths, but the trimmer was in the wrong spot. Must think more on this.

This commit is contained in:
Elf M. Sternberg 2016-09-26 16:09:05 -07:00
parent 3f77c5e476
commit 157e05d5a9
1 changed files with 4 additions and 2 deletions

View File

@ -508,8 +508,10 @@ def run_external_linter(filename, linter, linter_name):
if not failed:
return (trimmed_filename, linter_name, 0, [])
prefix = ((linter.get('print', 'false').strip().lower() != 'true') and ' ') or ' {}: '.format(trimmed_filename)
output = base_file_cleaner(encode_shell_messages(prefix, out) + ((err and encode_shell_messages(prefix, err)) or []))
prefix = (((linter.get('print', 'false').strip().lower() != 'true') and ' ')
or ' {}: '.format(trimmed_filename))
output = (encode_shell_messages(prefix, out) +
((err and encode_shell_messages(prefix, err)) or []))
return (trimmed_filename, linter_name, (returncode or 1), output)