Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrupp committed Aug 15, 2024
1 parent 40104de commit f46e17f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion analyzer/codechecker_analyzer/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def get_log_env(logfile, original_env):
new_env[context.env_var_cc_logger_bin] = context.path_logger_bin

if 'LD_PRELOAD' in new_env:
new_env['LD_PRELOAD'] = new_env['LD_PRELOAD'] + " " +context.logger_lib_name
new_env['LD_PRELOAD'] = new_env['LD_PRELOAD'] \
+ " " + context.logger_lib_name
else:
new_env['LD_PRELOAD'] = context.logger_lib_name

Expand Down

0 comments on commit f46e17f

Please sign in to comment.