summaryrefslogtreecommitdiff
path: root/tftpy/TftpClient.py
diff options
context:
space:
mode:
authorMichael P. Soulier <msoulier@digitaltorque.ca>2017-05-09 15:21:43 -0400
committerMichael P. Soulier <msoulier@digitaltorque.ca>2017-05-09 15:21:43 -0400
commit6790749787c5982607f25196de90b323bee030d7 (patch)
tree867e34c19c22d9a6af48e5225a2f62bab79e3512 /tftpy/TftpClient.py
parentf5fc5ee5cef359a8abe008473c9b652b1ca3964b (diff)
parent214a0b7b6420e4314852409474285690dee4fa1d (diff)
downloadtftpy-6790749787c5982607f25196de90b323bee030d7.tar.gz
Merged style updates, minor bug fixes
Diffstat (limited to 'tftpy/TftpClient.py')
-rw-r--r--tftpy/TftpClient.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tftpy/TftpClient.py b/tftpy/TftpClient.py
index 469c895..2763dda 100644
--- a/tftpy/TftpClient.py
+++ b/tftpy/TftpClient.py
@@ -40,10 +40,8 @@ class TftpClient(TftpSession):
Note: If output is a hyphen, stdout is used."""
# We're downloading.
log.debug("Creating download context with the following params:")
- log.debug("host = %s, port = %s, filename = %s, output = %s",
- self.host, self.iport, filename, output)
- log.debug("options = %s, packethook = %s, timeout = %s",
- self.options, packethook, timeout)
+ log.debug("host = %s, port = %s, filename = %s" % (self.host, self.iport, filename))
+ log.debug("options = %s, packethook = %s, timeout = %s" % (self.options, packethook, timeout))
self.context = TftpContextClientDownload(self.host,
self.iport,
filename,