summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael P. Soulier <msoulier@digitaltorque.ca>2021-02-01 11:14:47 -0500
committerMichael P. Soulier <msoulier@digitaltorque.ca>2021-02-01 11:14:47 -0500
commit007d5d720681d1b7f46baf23c1d272be1dd38574 (patch)
treeb2cde2c08f4d506bd215798cd9127f653462bdd2
parentf4c1e3679b41a9af3406ebcf83bbc4deb1eb3879 (diff)
parent4371578e2c22250635a295a2c267d7f437f5c93b (diff)
downloadtftpy-007d5d720681d1b7f46baf23c1d272be1dd38574.tar.gz
Merge branch 'master' into ris-tftproot-sibling-fix
-rw-r--r--tftpy/TftpStates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tftpy/TftpStates.py b/tftpy/TftpStates.py
index ef90bf0..695d44b 100644
--- a/tftpy/TftpStates.py
+++ b/tftpy/TftpStates.py
@@ -315,7 +315,7 @@ class TftpStateServerRecvRRQ(TftpServerState):
self.sendError(TftpErrors.FileNotFound)
raise TftpException("File not found: %s" % path)
else:
- log.warn("File not found: %s", path)
+ log.warning("File not found: %s", path)
self.sendError(TftpErrors.FileNotFound)
raise TftpException("File not found: {}".format(path))