diff options
Diffstat (limited to 'data-sync')
-rwxr-xr-x | data-sync | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -80,7 +80,12 @@ class data_sync(): if "user" in host: address += host["user"]+"@" - address += host["name"]+":"+path + if "address" in host: + address += host["address"] + else: + address += host["name"] + + address += ":" + path return address |