Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf committed Mar 29, 2024
1 parent de57da3 commit f7d9fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lib/installable/installable.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def check_output_under_different_user(self):
if self.install_context.run_checks_as_user:
envvars = []
for key, value in self.check_env.items():
envvars += [key + '=' + value]
envvars += [key + "=" + value]
call = ["/usr/bin/sudo", "-u", self.install_context.run_checks_as_user] + envvars + self.check_call
res_call = self.install_context.check_output(
call, env=self.check_env, stderr_on_stdout=self.check_stderr_on_stdout
Expand Down

0 comments on commit f7d9fb5

Please sign in to comment.