We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de57da3 commit f7d9fb5Copy full SHA for f7d9fb5
bin/lib/installable/installable.py
@@ -165,7 +165,7 @@ def check_output_under_different_user(self):
165
if self.install_context.run_checks_as_user:
166
envvars = []
167
for key, value in self.check_env.items():
168
- envvars += [key + '=' + value]
+ envvars += [key + "=" + value]
169
call = ["/usr/bin/sudo", "-u", self.install_context.run_checks_as_user] + envvars + self.check_call
170
res_call = self.install_context.check_output(
171
call, env=self.check_env, stderr_on_stdout=self.check_stderr_on_stdout
0 commit comments