We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 953da87 + ebd206a commit b925793Copy full SHA for b925793
multiqc_ngi/multiqc_ngi.py
@@ -600,7 +600,7 @@ def __init__(self):
600
scp_command.extend(['-i', config.remote_sshkey])
601
if getattr(config, 'remote_port', None) is not None:
602
scp_command.extend(['-P', str(config.remote_port)])
603
- scp_command.extend([config.output_fn, config.remote_destination])
+ scp_command.extend([config.output_fn_name, config.remote_destination])
604
log.debug(f"Transferring report with command: {' '.join(scp_command)}")
605
DEVNULL = open(os.devnull, 'wb')
606
p = subprocess.Popen(scp_command, stdout=DEVNULL)
0 commit comments