We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 689ec14 + 3298549 commit 7ec2b34Copy full SHA for 7ec2b34
multiqc_ngi/multiqc_ngi.py
@@ -579,7 +579,7 @@ def __init__(self):
579
if getattr(config, 'remote_sshkey', None) is not None:
580
scp_command.extend(['-i', config.remote_sshkey])
581
if getattr(config, 'remote_port', None) is not None:
582
- scp_command.extend(['-P', config.remote_port])
+ scp_command.extend(['-P', str(config.remote_port)])
583
scp_command.extend([config.output_fn, config.remote_destination])
584
log.debug('Transferring report with command: {}'.format(' '.join(scp_command)))
585
DEVNULL = open(os.devnull, 'wb')
0 commit comments