Skip to content

Commit 0601995

Browse files
authored
Merge pull request #75 from amb1s1/typo_fixes
fixed typo
2 parents 0596769 + 1116c9f commit 0601995

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
@@ -167,7 +167,7 @@ def file_copy(self, src, dest=None, **kwargs):
167167
# TODO: Make this an internal method since exposing file_copy should be sufficient
168168
def file_copy_remote_exists(self, src, dest=None, **kwargs):
169169
fc = EOSFileCopy(self, src, dest)
170-
if fc.remote_file_exists() and fc.already_transfered():
170+
if fc.remote_file_exists() and fc.already_transferred():
171171
return True
172172
return False
173173

pyntc/devices/system_features/file_copy/eos_file_copy.py

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

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

0 commit comments

Comments
 (0)