Skip to content

Commit

Permalink
Fix pylama error
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Jan 28, 2017
1 parent 31baed6 commit a964840
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netmiko/scp_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ def disable_scp(self, cmd=None):

class InLineTransfer(FileTransfer):
"""Use TCL on Cisco IOS to directly transfer file."""
def __init__(self, ssh_conn, source_file=None, dest_file=None, file_system=None, direction='put',
source_config=None):
def __init__(self, ssh_conn, source_file=None, dest_file=None, file_system=None,
direction='put', source_config=None):
if source_file and source_config:
msg = "Invalid call to InLineTransfer both source_file and source_config specified."
raise ValueError(msg)
Expand Down

0 comments on commit a964840

Please sign in to comment.