Skip to content

Commit b925793

Browse files
authored
Merge pull request #14 from aanil/master
Fix bug where report name was not changed everywhere
2 parents 953da87 + ebd206a commit b925793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

multiqc_ngi/multiqc_ngi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ def __init__(self):
600600
scp_command.extend(['-i', config.remote_sshkey])
601601
if getattr(config, 'remote_port', None) is not None:
602602
scp_command.extend(['-P', str(config.remote_port)])
603-
scp_command.extend([config.output_fn, config.remote_destination])
603+
scp_command.extend([config.output_fn_name, config.remote_destination])
604604
log.debug(f"Transferring report with command: {' '.join(scp_command)}")
605605
DEVNULL = open(os.devnull, 'wb')
606606
p = subprocess.Popen(scp_command, stdout=DEVNULL)

0 commit comments

Comments
 (0)