Skip to content

Commit 2562166

Browse files
committed
Remove remaining --user option
1 parent f794d87 commit 2562166

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scorep/subsystem.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ def generate_ld_preload(scorep_config):
3333
return preload.strip()
3434

3535

36-
def generate_subsystem_code(config=[]):
36+
def generate_subsystem_code(config):
3737
"""
3838
Generates the data needed to be preloaded.
3939
"""
4040

41-
scorep_config = ["scorep-config"] + config + ["--user"]
41+
scorep_config = ["scorep-config"] + config
4242

4343
(return_code, _, _) = scorep.helper.call(scorep_config)
4444
if return_code != 0:

0 commit comments

Comments
 (0)