summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-10-18 13:40:06 +0200
committerAnton Khirnov <anton@khirnov.net>2020-10-18 13:40:06 +0200
commitfbb0edad8fc713b10e8649444497ef67db37e9ad (patch)
tree045ec69358911f9bcc6918c9a85a54bb43d1ed2c
parent40196841722c8ca3b0e65001fbd4768bb1ef6bc5 (diff)
targets/TargetSSH: actually use bup_exec variable
-rw-r--r--lbup/targets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lbup/targets.py b/lbup/targets.py
index 4a89570..4ce7110 100644
--- a/lbup/targets.py
+++ b/lbup/targets.py
@@ -184,7 +184,7 @@ class TargetSSH(Target):
bup_exec = ['bup', 'on', '%s@%s' % (self._remote.username, self._remote.host),
'-d', remote_bupdir]
- return self._do_save(['bup', 'on', '%s@%s' % (self._remote.username, self._remote.host)])
+ return self._do_save(bup_exec)
class TargetSSHLXCLVM(TargetSSH):
"""