Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SimpleSync.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def run(self):
print("SimpleSync: ", self.local_file, " -> ", remote)

for line in runProcess(["scp", "-r", "-P", str(self.port) , self.local_file, remote]):
print(line, end='')
print(line.encode('ascii', 'ignore'), end='')

#
# LocalCopier does local copying using threading to avoid UI blocking
Expand All @@ -82,7 +82,7 @@ def run(self):
print("SimpleSync: ", self.local_file, " -> ", self.remote_file)

for line in runProcess(['cp', self.local_file, self.remote_file]):
print(line, end='')
print(line.encode('ascii', 'ignore'), end='')

#
# Subclass sublime_plugin.EventListener
Expand Down