Merge pull request #116 from kiwix/ssh_key

convert SSH_KEY from PosixPath to str
This commit is contained in:
Matthieu Gautier 2018-02-03 23:51:37 +01:00 committed by GitHub
commit 391a0f5494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ def make_archive(archive_name, file_to_archives):
def scp(what, where):
command = ['scp', '-i', SSH_KEY, what, where]
command = ['scp', '-i', str(SSH_KEY), what, where]
subprocess.check_call(command)