Skip to content

Commit 1116c9f

Browse files
committed
fixed typo
1 parent f9dc95c commit 1116c9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyntc/devices/eos_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def file_copy(self, src, dest=None, **kwargs):
177177
# TODO: Make this an internal method since exposing file_copy should be sufficient
178178
def file_copy_remote_exists(self, src, dest=None, **kwargs):
179179
fc = EOSFileCopy(self, src, dest)
180-
if fc.remote_file_exists() and fc.already_transfered():
180+
if fc.remote_file_exists() and fc.already_transferred():
181181
return True
182182
return False
183183

pyntc/devices/system_features/file_copy/eos_file_copy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, device, local, remote=None, port=22):
1414
self.remote = remote or os.path.basename(local)
1515
self.port = port
1616

17-
def already_transfered(self):
17+
def already_transferred(self):
1818
remote_hash = self.get_remote_md5()
1919
local_hash = self.get_local_md5()
2020
if local_hash is not None:

0 commit comments

Comments
 (0)