summaryrefslogtreecommitdiff
path: root/test-sftpfs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-07-11 11:39:47 +1200
committerLars Wirzenius <liw@liw.fi>2010-07-11 11:39:47 +1200
commitb2e310b46f45d3a99b73a164bf7b6fa960cb0aac (patch)
treeae52d7cf24cee13bd46375272166217ce431d5e5 /test-sftpfs
parent1f21a4f9cd951e5f73ba9a0edd771d6ad793fc42 (diff)
downloadobnam-b2e310b46f45d3a99b73a164bf7b6fa960cb0aac.tar.gz
Fix leading double-slash.
Diffstat (limited to 'test-sftpfs')
-rw-r--r--test-sftpfs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-sftpfs b/test-sftpfs
index 12983f54..fcf2a015 100644
--- a/test-sftpfs
+++ b/test-sftpfs
@@ -39,7 +39,7 @@ class SftpTests(unittest.TestCase, obnamlib.VfsTests):
def setUp(self):
self.basepath = tempfile.mkdtemp()
- baseurl = 'sftp://localhost/%s' % self.basepath
+ baseurl = 'sftp://localhost%s' % self.basepath
self.fs = obnamlib.plugins.sftp_plugin.SftpFS(baseurl)
self.fs.connect()