summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Vézina <ml.richard.vezina@gmail.com>2021-10-15 21:51:24 -0400
committerRichard Vézina <ml.richard.vezina@gmail.com>2021-10-15 21:51:24 -0400
commitde9c8e9c22e966b893384ac48fb61173ca99133f (patch)
treeb55db0a5a6a11bb38ad004175889672e0085e102
parent78a36f742afd89ee48f4fb7d28f1b97d7cec1a8f (diff)
downloadtftpy-de9c8e9c22e966b893384ac48fb61173ca99133f.tar.gz
Fix typos
-rw-r--r--tftpy/TftpContexts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tftpy/TftpContexts.py b/tftpy/TftpContexts.py
index f01509e..d905808 100644
--- a/tftpy/TftpContexts.py
+++ b/tftpy/TftpContexts.py
@@ -116,7 +116,7 @@ class TftpContext(object):
def __del__(self):
"""Simple destructor to try to call housekeeping in the end method if
- not called explicitely. Leaking file descriptors is not a good
+ not called explicitly. Leaking file descriptors is not a good
thing."""
self.end()
@@ -132,7 +132,7 @@ class TftpContext(object):
def end(self, close_fileobj=True):
"""Perform session cleanup, since the end method should always be
- called explicitely by the calling code, this works better than the
+ called explicitly by the calling code, this works better than the
destructor.
Set close_fileobj to False so fileobj can be returned open."""
log.debug("in TftpContext.end - closing socket")