diff options
-rwxr-xr-x | bwLpStatus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bwLpStatus.py b/bwLpStatus.py index 076f879..67e6531 100755 --- a/bwLpStatus.py +++ b/bwLpStatus.py @@ -101,7 +101,7 @@ def https(name, url): def tftp(name, host, port, filename): print('TFTP request ' + host + ' ...', end='') - hostname = host + ':' + str(port) + hostname = host + ':' + str(port) + ':' + filename try: client = tftpy.TftpClient(host, port) client.download(filename, 'tmp_tftp_file') |